From 4b0924a13a84fce267733a90aaf5932c275829b1 Mon Sep 17 00:00:00 2001 From: Assaf Taubenfeld Date: Wed, 29 Jul 2020 15:52:50 +0300 Subject: [PATCH 01/13] first 'autorest' --- src/Kusto/.gitattributes | 1 + src/Kusto/.gitignore | 14 + src/Kusto/examples/readme.md | 11 + src/Kusto/how-to.md | 58 + src/Kusto/license.txt | 227 +++ src/Kusto/readme.md | 2 +- src/Kusto/resources/readme.md | 11 + src/Kusto/tools/Resources/.gitattributes | 1 + .../Resources/custom/New-AzDeployment.ps1 | 231 +++ src/Kusto/tools/Resources/docs/readme.md | 11 + src/Kusto/tools/Resources/examples/readme.md | 11 + src/Kusto/tools/Resources/how-to.md | 58 + src/Kusto/tools/Resources/license.txt | 203 ++ src/Kusto/tools/Resources/readme.md | 440 +++++ .../CmdletSurface-latest-2019-04-30.md | 598 ++++++ .../tools/Resources/resources/ModelSurface.md | 1645 +++++++++++++++++ src/Kusto/tools/Resources/resources/readme.md | 11 + src/Kusto/tools/Resources/test/readme.md | 17 + 18 files changed, 3549 insertions(+), 1 deletion(-) create mode 100644 src/Kusto/.gitattributes create mode 100644 src/Kusto/.gitignore create mode 100644 src/Kusto/examples/readme.md create mode 100644 src/Kusto/how-to.md create mode 100644 src/Kusto/license.txt create mode 100644 src/Kusto/resources/readme.md create mode 100644 src/Kusto/tools/Resources/.gitattributes create mode 100644 src/Kusto/tools/Resources/custom/New-AzDeployment.ps1 create mode 100644 src/Kusto/tools/Resources/docs/readme.md create mode 100644 src/Kusto/tools/Resources/examples/readme.md create mode 100644 src/Kusto/tools/Resources/how-to.md create mode 100644 src/Kusto/tools/Resources/license.txt create mode 100644 src/Kusto/tools/Resources/readme.md create mode 100644 src/Kusto/tools/Resources/resources/CmdletSurface-latest-2019-04-30.md create mode 100644 src/Kusto/tools/Resources/resources/ModelSurface.md create mode 100644 src/Kusto/tools/Resources/resources/readme.md create mode 100644 src/Kusto/tools/Resources/test/readme.md 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..649721c69ce9 --- /dev/null +++ b/src/Kusto/.gitignore @@ -0,0 +1,14 @@ +bin +obj +.vs +generated +internal +exports +custom/*.psm1 +test/*-TestResults.xml +/*.ps1 +/*.ps1xml +/*.psm1 +/*.snk +/*.csproj +/*.nuspec \ No newline at end of file diff --git a/src/Kusto/examples/readme.md b/src/Kusto/examples/readme.md new file mode 100644 index 000000000000..ac871d71fc72 --- /dev/null +++ b/src/Kusto/examples/readme.md @@ -0,0 +1,11 @@ +# Examples +This directory contains examples from the exported cmdlets of the module. When `build-module.ps1` is ran, example stub files will be generated here. If your module support Azure Profiles, the example stubs will be in individual profile folders. These example stubs should be updated to show how the cmdlet is used. The examples are imported into the documentation when `generate-help.ps1` is ran. + +## Info +- Modifiable: yes +- Generated: partial +- Committed: yes +- Packaged: no + +## Purpose +This separates the example documentation details from the generated documentation information provided directly from the generated cmdlets. Since the cmdlets don't have examples from the REST spec, this provides a means to add examples easily. The example stubs provide the markdown format that is required. The 3 core elements are: the name of the example, the code information of the example, and the description of the example. That information, if the markdown format is followed, will be available to documentation generation and be part of the documents in the `..\docs` folder. \ No newline at end of file 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..c067c157340f 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.8.1 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. 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/tools/Resources/.gitattributes b/src/Kusto/tools/Resources/.gitattributes new file mode 100644 index 000000000000..2125666142eb --- /dev/null +++ b/src/Kusto/tools/Resources/.gitattributes @@ -0,0 +1 @@ +* text=auto \ No newline at end of file diff --git a/src/Kusto/tools/Resources/custom/New-AzDeployment.ps1 b/src/Kusto/tools/Resources/custom/New-AzDeployment.ps1 new file mode 100644 index 000000000000..4ece0d887e46 --- /dev/null +++ b/src/Kusto/tools/Resources/custom/New-AzDeployment.ps1 @@ -0,0 +1,231 @@ +function New-AzDeployment { + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Resources.Models.Api20180501.IDeploymentExtended')] + [CmdletBinding(DefaultParameterSetName='CreateWithTemplateFileParameterFile', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Description('You can provide the template and parameters directly in the request or link to JSON files.')] + param( + [Parameter(HelpMessage='The name of the deployment. If not provided, the name of the template file will be used. If a template file is not used, a random GUID will be used for the name.')] + [Alias('DeploymentName')] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Runtime.Info(SerializedName='deploymentName', Required, PossibleTypes=([System.String]), Description='The name of the deployment.')] + [System.String] + # The name of the deployment. If not provided, the name of the template file will be used. If a template file is not used, a random GUID will be used for the name. + ${Name}, + + [Parameter(Mandatory, HelpMessage='The ID of the target subscription.')] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Runtime.Info(SerializedName='subscriptionId', Required, PossibleTypes=([System.String]), Description='The ID of the target subscription.')] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterFile', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] + [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterJson', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] + [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterObject', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] + [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterFile', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] + [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterJson', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] + [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterObject', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] + [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterFile', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] + [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterJson', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] + [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterObject', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Runtime.Info(SerializedName='resourceGroupName', Required, PossibleTypes=([System.String]), Description='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] + [System.String] + # The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist. + ${ResourceGroupName}, + + [Parameter(ParameterSetName='CreateWithTemplateFileParameterFile', Mandatory, HelpMessage='Local path to the JSON template file.')] + [Parameter(ParameterSetName='CreateWithTemplateFileParameterJson', Mandatory, HelpMessage='Local path to the JSON template file.')] + [Parameter(ParameterSetName='CreateWithTemplateFileParameterObject', Mandatory, HelpMessage='Local path to the JSON template file.')] + [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterFile', Mandatory, HelpMessage='Local path to the JSON template file.')] + [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterJson', Mandatory, HelpMessage='Local path to the JSON template file.')] + [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterObject', Mandatory, HelpMessage='Local path to the JSON template file.')] + [System.String] + # Local path to the JSON template file. + ${TemplateFile}, + + [Parameter(ParameterSetName='CreateWithTemplateJsonParameterFile', Mandatory, HelpMessage='The string representation of the JSON template.')] + [Parameter(ParameterSetName='CreateWithTemplateJsonParameterJson', Mandatory, HelpMessage='The string representation of the JSON template.')] + [Parameter(ParameterSetName='CreateWithTemplateJsonParameterObject', Mandatory, HelpMessage='The string representation of the JSON template.')] + [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterFile', Mandatory, HelpMessage='The string representation of the JSON template.')] + [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterJson', Mandatory, HelpMessage='The string representation of the JSON template.')] + [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterObject', Mandatory, HelpMessage='The string representation of the JSON template.')] + [System.String] + # The string representation of the JSON template. + ${TemplateJson}, + + [Parameter(ParameterSetName='CreateWithTemplateObjectParameterFile', Mandatory, HelpMessage='The hashtable representation of the JSON template.')] + [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterFile', Mandatory, HelpMessage='The hashtable representation of the JSON template.')] + [Parameter(ParameterSetName='CreateWithTemplateObjectParameterJson', Mandatory, HelpMessage='The hashtable representation of the JSON template.')] + [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterJson', Mandatory, HelpMessage='The hashtable representation of the JSON template.')] + [Parameter(ParameterSetName='CreateWithTemplateObjectParameterObject', Mandatory, HelpMessage='The hashtable representation of the JSON template.')] + [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterObject', Mandatory, HelpMessage='The hashtable representation of the JSON template.')] + [System.Collections.Hashtable] + # The hashtable representation of the JSON template. + ${TemplateObject}, + + [Parameter(ParameterSetName='CreateWithTemplateFileParameterFile', Mandatory, HelpMessage='Local path to the parameter JSON template file.')] + [Parameter(ParameterSetName='CreateWithTemplateJsonParameterFile', Mandatory, HelpMessage='Local path to the parameter JSON template file.')] + [Parameter(ParameterSetName='CreateWithTemplateObjectParameterFile', Mandatory, HelpMessage='Local path to the parameter JSON template file.')] + [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterFile', Mandatory, HelpMessage='Local path to the parameter JSON template file.')] + [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterFile', Mandatory, HelpMessage='Local path to the parameter JSON template file.')] + [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterFile', Mandatory, HelpMessage='Local path to the parameter JSON template file.')] + [System.String] + # Local path to the parameter JSON template file. + ${TemplateParameterFile}, + + [Parameter(ParameterSetName='CreateWithTemplateFileParameterJson', Mandatory, HelpMessage='The string representation of the parameter JSON template.')] + [Parameter(ParameterSetName='CreateWithTemplateJsonParameterJson', Mandatory, HelpMessage='The string representation of the parameter JSON template.')] + [Parameter(ParameterSetName='CreateWithTemplateObjectParameterJson', Mandatory, HelpMessage='The string representation of the parameter JSON template.')] + [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterJson', Mandatory, HelpMessage='The string representation of the parameter JSON template.')] + [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterJson', Mandatory, HelpMessage='The string representation of the parameter JSON template.')] + [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterJson', Mandatory, HelpMessage='The string representation of the parameter JSON template.')] + [System.String] + # The string representation of the parameter JSON template. + ${TemplateParameterJson}, + + [Parameter(ParameterSetName='CreateWithTemplateFileParameterObject', Mandatory, HelpMessage='The hashtable representation of the parameter JSON template.')] + [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterObject', Mandatory, HelpMessage='The hashtable representation of the parameter JSON template.')] + [Parameter(ParameterSetName='CreateWithTemplateJsonParameterObject', Mandatory, HelpMessage='The hashtable representation of the parameter JSON template.')] + [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterObject', Mandatory, HelpMessage='The hashtable representation of the parameter JSON template.')] + [Parameter(ParameterSetName='CreateWithTemplateObjectParameterObject', Mandatory, HelpMessage='The hashtable representation of the parameter JSON template.')] + [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterObject', Mandatory, HelpMessage='The hashtable representation of the parameter JSON template.')] + [System.Collections.Hashtable] + # The hashtable representation of the parameter JSON template. + ${TemplateParameterObject}, + + [Parameter(Mandatory, HelpMessage='The mode that is used to deploy resources. This value can be either Incremental or Complete. In Incremental mode, resources are deployed without deleting existing resources that are not included in the template. In Complete mode, resources are deployed and existing resources in the resource group that are not included in the template are deleted. Be careful when using Complete mode as you may unintentionally delete resources.')] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Resources.Support.DeploymentMode])] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Runtime.Info(SerializedName='mode', Required, PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Resources.Support.DeploymentMode]), Description='The mode that is used to deploy resources. This value can be either Incremental or Complete. In Incremental mode, resources are deployed without deleting existing resources that are not included in the template. In Complete mode, resources are deployed and existing resources in the resource group that are not included in the template are deleted. Be careful when using Complete mode as you may unintentionally delete resources.')] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Support.DeploymentMode] + # The mode that is used to deploy resources. This value can be either Incremental or Complete. In Incremental mode, resources are deployed without deleting existing resources that are not included in the template. In Complete mode, resources are deployed and existing resources in the resource group that are not included in the template are deleted. Be careful when using Complete mode as you may unintentionally delete resources. + ${Mode}, + + [Parameter(HelpMessage='Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information you are passing in during deployment. By logging information about the request or response, you could potentially expose sensitive data that is retrieved through the deployment operations.')] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Runtime.Info(SerializedName='detailLevel', PossibleTypes=([System.String]), Description='Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information you are passing in during deployment. By logging information about the request or response, you could potentially expose sensitive data that is retrieved through the deployment operations.')] + [System.String] + # Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information you are passing in during deployment. By logging information about the request or response, you could potentially expose sensitive data that is retrieved through the deployment operations. + ${DeploymentDebugLogLevel}, + + [Parameter(HelpMessage='The location to store the deployment data.')] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Runtime.Info(SerializedName='location', PossibleTypes=([System.String]), Description='The location to store the deployment data.')] + [System.String] + # The location to store the deployment data. + ${Location}, + + [Parameter(HelpMessage='The credentials, account, tenant, and subscription used for communication with Azure.')] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(HelpMessage='Run the command as a job')] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(HelpMessage='Run the command asynchronously')] + [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait} + + ) + + process { + if ($PSBoundParameters.ContainsKey("TemplateFile")) + { + if (!(Test-Path -Path $TemplateFile)) + { + throw "Unable to find template file '$TemplateFile'." + } + + if (!$PSBoundParameters.ContainsKey("Name")) + { + $DeploymentName = (Get-Item -Path $TemplateFile).BaseName + $null = $PSBoundParameters.Add("Name", $DeploymentName) + } + + $TemplateJson = [System.IO.File]::ReadAllText($TemplateFile) + $null = $PSBoundParameters.Add("Template", $TemplateJson) + $null = $PSBoundParameters.Remove("TemplateFile") + } + elseif ($PSBoundParameters.ContainsKey("TemplateJson")) + { + $null = $PSBoundParameters.Add("Template", $TemplateJson) + $null = $PSBoundParameters.Remove("TemplateJson") + } + elseif ($PSBoundParameters.ContainsKey("TemplateObject")) + { + $TemplateJson = ConvertTo-Json -InputObject $TemplateObject + $null = $PSBoundParameters.Add("Template", $TemplateJson) + $null = $PSBoundParameters.Remove("TemplateObject") + } + + if ($PSBoundParameters.ContainsKey("TemplateParameterFile")) + { + if (!(Test-Path -Path $TemplateParameterFile)) + { + throw "Unable to find template parameter file '$TemplateParameterFile'." + } + + $ParameterJson = [System.IO.File]::ReadAllText($TemplateParameterFile) + $ParameterObject = ConvertFrom-Json -InputObject $ParameterJson + $ParameterHashtable = @{} + $ParameterObject.PSObject.Properties | ForEach-Object { $ParameterHashtable[$_.Name] = $_.Value } + $ParameterHashtable.Remove("`$schema") + $ParameterHashtable.Remove("contentVersion") + $NestedValues = $ParameterHashtable.parameters + if ($null -ne $NestedValues) + { + $ParameterHashtable.Remove("parameters") + $NestedValues.PSObject.Properties | ForEach-Object { $ParameterHashtable[$_.Name] = $_.Value } + } + + $ParameterJson = ConvertTo-Json -InputObject $ParameterHashtable + $null = $PSBoundParameters.Add("DeploymentPropertyParameter", $ParameterJson) + $null = $PSBoundParameters.Remove("TemplateParameterFile") + } + elseif ($PSBoundParameters.ContainsKey("TemplateParameterJson")) + { + $null = $PSBoundParameters.Add("DeploymentPropertyParameter", $TemplateParameterJson) + $null = $PSBoundParameters.Remove("TemplateParameterJson") + } + elseif ($PSBoundParameters.ContainsKey("TemplateParameterObject")) + { + $TemplateParameterObject.Remove("`$schema") + $TemplateParameterObject.Remove("contentVersion") + $NestedValues = $TemplateParameterObject.parameters + if ($null -ne $NestedValues) + { + $TemplateParameterObject.Remove("parameters") + $NestedValues.PSObject.Properties | ForEach-Object { $TemplateParameterObject[$_.Name] = $_.Value } + } + + $TemplateParameterJson = ConvertTo-Json -InputObject $TemplateParameterObject + $null = $PSBoundParameters.Add("DeploymentPropertyParameter", $TemplateParameterJson) + $null = $PSBoundParameters.Remove("TemplateParameterObject") + } + + if (!$PSBoundParameters.ContainsKey("Name")) + { + $DeploymentName = (New-Guid).Guid + $null = $PSBoundParameters.Add("Name", $DeploymentName) + } + + if ($PSBoundParameters.ContainsKey("ResourceGroupName")) + { + Az.Resources.TestSupport.private\New-AzDeployment_CreateExpanded @PSBoundParameters + } + else + { + Az.Resources.TestSupport.private\New-AzDeployment_CreateExpanded @PSBoundParameters + } + } +} \ No newline at end of file diff --git a/src/Kusto/tools/Resources/docs/readme.md b/src/Kusto/tools/Resources/docs/readme.md new file mode 100644 index 000000000000..95fb0e21daf2 --- /dev/null +++ b/src/Kusto/tools/Resources/docs/readme.md @@ -0,0 +1,11 @@ +# Docs +This directory contains the documentation of the cmdlets for the `Az.Resources` module. To run documentation generation, use the `generate-help.ps1` script at the root module folder. Files in this folder will *always be overriden on regeneration*. To update documentation examples, please use the `..\examples` folder. + +## Info +- Modifiable: no +- Generated: all +- Committed: yes +- Packaged: yes + +## Details +The process of documentation generation loads `Az.Resources` and analyzes the exported cmdlets from the module. It recognizes the [help comments](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_comment_based_help) that are generated into the scripts in the `..\exports` folder. Additionally, when writing custom cmdlets in the `..\custom` folder, you can use the help comments syntax, which decorate the exported scripts at build-time. The documentation examples are taken from the `..\examples` folder. \ No newline at end of file diff --git a/src/Kusto/tools/Resources/examples/readme.md b/src/Kusto/tools/Resources/examples/readme.md new file mode 100644 index 000000000000..ac871d71fc72 --- /dev/null +++ b/src/Kusto/tools/Resources/examples/readme.md @@ -0,0 +1,11 @@ +# Examples +This directory contains examples from the exported cmdlets of the module. When `build-module.ps1` is ran, example stub files will be generated here. If your module support Azure Profiles, the example stubs will be in individual profile folders. These example stubs should be updated to show how the cmdlet is used. The examples are imported into the documentation when `generate-help.ps1` is ran. + +## Info +- Modifiable: yes +- Generated: partial +- Committed: yes +- Packaged: no + +## Purpose +This separates the example documentation details from the generated documentation information provided directly from the generated cmdlets. Since the cmdlets don't have examples from the REST spec, this provides a means to add examples easily. The example stubs provide the markdown format that is required. The 3 core elements are: the name of the example, the code information of the example, and the description of the example. That information, if the markdown format is followed, will be available to documentation generation and be part of the documents in the `..\docs` folder. \ No newline at end of file diff --git a/src/Kusto/tools/Resources/how-to.md b/src/Kusto/tools/Resources/how-to.md new file mode 100644 index 000000000000..c4daf2b254cd --- /dev/null +++ b/src/Kusto/tools/Resources/how-to.md @@ -0,0 +1,58 @@ +# How-To +This document describes how to develop for `Az.Resources`. + +## Building `Az.Resources` +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.Resources` +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.Resources` +To pack `Az.Resources` 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.Resources`. +- `build-module.ps1` + - Builds the module DLL (`./bin/Az.Resources.private.dll`), creates the exported cmdlets and documentation, generates custom cmdlet test stubs and exported cmdlet example stubs, and updates `./Az.Resources.psd1` with Azure profile information. + - **Parameters**: [`Switch` parameters] + - `-Run`: After building, creates an isolated PowerShell session and loads `Az.Resources`. + - `-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.Resources` 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/tools/Resources/license.txt b/src/Kusto/tools/Resources/license.txt new file mode 100644 index 000000000000..3d3f8f90d5d7 --- /dev/null +++ b/src/Kusto/tools/Resources/license.txt @@ -0,0 +1,203 @@ +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 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/tools/Resources/readme.md b/src/Kusto/tools/Resources/readme.md new file mode 100644 index 000000000000..c39487848bfc --- /dev/null +++ b/src/Kusto/tools/Resources/readme.md @@ -0,0 +1,440 @@ + +# Az.Resources.TestSupport +This directory contains the PowerShell module for the Resources service. + +--- +## Status +[![Az.Resources.TestSupport](https://img.shields.io/powershellgallery/v/Az.Resources.TestSupport.svg?style=flat-square&label=Az.Resources.TestSupport "Az.Resources.TestSupport")](https://www.powershellgallery.com/packages/Az.Resources.TestSupport/) + +## Info +- Modifiable: yes +- Generated: all +- Committed: yes +- Packaged: yes + +--- +## Detail +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.8.1 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. + +## Development +For information on how to develop for `Az.Resources.TestSupport`, see [how-to.md](how-to.md). + + +--- +## Generation Requirements +Use of the beta version of `autorest.powershell` generator requires the following: +- [NodeJS LTS](https://nodejs.org) (10.15.x LTS preferred) + - **Note**: It *will not work* with Node < 10.x. Using 11.x builds may cause issues as they may introduce instability or breaking changes. +> If you want an easy way to install and update Node, [NVS - Node Version Switcher](../nodejs/installing-via-nvs.md) or [NVM - Node Version Manager](../nodejs/installing-via-nvm.md) is recommended. +- [AutoRest](https://aka.ms/autorest) v3 beta
`npm install -g @autorest/autorest`
  +- PowerShell 6.0 or greater + - If you don't have it installed, you can use the cross-platform npm package
`npm install -g pwsh`
  +- .NET Core SDK 2.0 or greater + - If you don't have it installed, you can use the cross-platform npm package
`npm install -g dotnet-sdk-2.2`
  + +## Run Generation +In this directory, run AutoRest: +> `autorest` + +--- +### AutoRest Configuration +> see https://aka.ms/autorest + +> Values +``` yaml +azure: true +powershell: true +branch: master +repo: https://github.com/Azure/azure-rest-api-specs/blob/master +metadata: + authors: Microsoft Corporation + owners: Microsoft Corporation + copyright: Microsoft Corporation. All rights reserved. + companyName: Microsoft Corporation + requireLicenseAcceptance: true + licenseUri: https://aka.ms/azps-license + projectUri: https://github.com/Azure/azure-powershell +``` + +> Names +``` yaml +prefix: Az +``` + +> Folders +``` yaml +clear-output-folder: true +``` + +``` yaml +input-file: + - https://github.com/Azure/azure-rest-api-specs/blob/master/specification/resources/resource-manager/Microsoft.Resources/stable/2018-05-01/resources.json +module-name: Az.Resources.TestSupport +namespace: Microsoft.Azure.PowerShell.Cmdlets.Resources + +subject-prefix: '' +module-version: 0.0.1 +title: Resources + +directive: + - where: + subject: Operation + hide: true + - where: + parameter-name: SubscriptionId + set: + default: + script: '(Get-AzContext).Subscription.Id' + - from: swagger-document + where: $..parameters[?(@.name=='$filter')] + transform: $['x-ms-skip-url-encoding'] = true + - from: swagger-document + where: $..[?( /Resources_(CreateOrUpdate|Update|Delete|Get|GetById|CheckExistence|CheckExistenceById)/g.exec(@.operationId))] + transform: "$.parameters = $.parameters.map( each => { each.name = each.name === 'api-version' ? 'explicit-api-version' : each.name; return each; } );" + - from: source-file-csharp + where: $ + transform: $ = $.replace(/explicit-api-version/g, 'api-version'); + - where: + parameter-name: ExplicitApiVersion + set: + parameter-name: ApiVersion + - from: source-file-csharp + where: $ + transform: > + $ = $.replace(/result.OdataNextLink/g,'nextLink' ); + return $.replace( /(^\s*)(if\s*\(\s*nextLink\s*!=\s*null\s*\))/gm, '$1var nextLink = Module.Instance.FixNextLink(responseMessage, result.OdataNextLink);\n$1$2' ); + - from: swagger-document + where: + - $..DeploymentProperties.properties.template + - $..DeploymentProperties.properties.parameters + - $..ResourceGroupExportResult.properties.template + - $..PolicyDefinitionProperties.properties.policyRule + transform: $.additionalProperties = true; + - where: + verb: Set + subject: Resource + remove: true + - where: + verb: Set + subject: Deployment + remove: true + - where: + subject: Resource + parameter-name: GroupName + set: + parameter-name: ResourceGroupName + clear-alias: true + - where: + subject: Resource + parameter-name: Id + set: + parameter-name: ResourceId + clear-alias: true + - where: + subject: Resource + parameter-name: Type + set: + parameter-name: ResourceType + clear-alias: true + - where: + subject: Appliance* + remove: true + - where: + verb: Test + subject: CheckNameAvailability + set: + subject: NameAvailability + - where: + verb: Export + subject: ResourceGroupTemplate + set: + subject: ResourceGroup + alias: Export-AzResourceGroupTemplate + - where: + parameter-name: Filter + set: + alias: ODataQuery + - where: + verb: Test + subject: ResourceGroupExistence + set: + subject: ResourceGroup + alias: Test-AzResourceGroupExistence + - where: + verb: Export + subject: DeploymentTemplate + set: + alias: [Save-AzDeploymentTemplate, Save-AzResourceGroupDeploymentTemplate] + - where: + subject: Deployment + set: + alias: ${verb}-AzResourceGroupDeployment + - where: + verb: Get + subject: DeploymentOperation + set: + alias: Get-AzResourceGroupDeploymentOperation + - where: + verb: New + subject: Deployment + variant: Create.*Expanded.* + parameter-name: Parameter + set: + parameter-name: DeploymentPropertyParameter + - where: + verb: New + subject: Deployment + hide: true + - where: + verb: Test + subject: Deployment + variant: Validate.*Expanded.* + parameter-name: Parameter + set: + parameter-name: DeploymentPropertyParameter + - where: + verb: New + subject: Deployment + parameter-name: DebugSettingDetailLevel + set: + parameter-name: DeploymentDebugLogLevel + - where: + subject: Provider + set: + subject: ResourceProvider + - where: + subject: ProviderFeature|ResourceProvider|ResourceLock + parameter-name: ResourceProviderNamespace + set: + alias: ProviderNamespace + - where: + verb: Update + subject: ResourceGroup + parameter-name: Name + clear-alias: true + - where: + parameter-name: UpnOrObjectId + set: + alias: ['UserPrincipalName', 'Upn', 'ObjectId'] + - where: + subject: Deployment + variant: (.*)Expanded(.*) + parameter-name: Parameter + set: + parameter-name: DeploymentParameter + # Format output + - where: + model-name: GenericResource + set: + format-table: + properties: + - Name + - ResourceGroupName + - Type + - Location + labels: + Type: ResourceType + - where: + model-name: ResourceGroup + set: + format-table: + properties: + - Name + - Location + - ProvisioningState + - where: + model-name: DeploymentExtended + set: + format-table: + properties: + - Name + - ProvisioningState + - Timestamp + - Mode + - where: + model-name: PolicyAssignment + set: + format-table: + properties: + - Name + - DisplayName + - Id + - where: + model-name: PolicyDefinition + set: + format-table: + properties: + - Name + - DisplayName + - Id + - where: + model-name: PolicySetDefinition + set: + format-table: + properties: + - Name + - DisplayName + - Id + - where: + model-name: Provider + set: + format-table: + properties: + - Namespace + - RegistrationState + - where: + model-name: ProviderResourceType + set: + format-table: + properties: + - ResourceType + - Location + - ApiVersion + - where: + model-name: FeatureResult + set: + format-table: + properties: + - Name + - State + - where: + model-name: TagDetails + set: + format-table: + properties: + - TagName + - CountValue + - where: + model-name: Application + set: + format-table: + properties: + - DisplayName + - ObjectId + - AppId + - Homepage + - AvailableToOtherTenant + - where: + model-name: KeyCredential + set: + format-table: + properties: + - StartDate + - EndDate + - KeyId + - Type + - where: + model-name: PasswordCredential + set: + format-table: + properties: + - StartDate + - EndDate + - KeyId + - where: + model-name: User + set: + format-table: + properties: + - PrincipalName + - DisplayName + - ObjectId + - Type + - where: + model-name: AdGroup + set: + format-table: + properties: + - DisplayName + - Mail + - ObjectId + - SecurityEnabled + - where: + model-name: ServicePrincipal + set: + format-table: + properties: + - DisplayName + - ObjectId + - AppDisplayName + - AppId + - where: + model-name: Location + set: + format-table: + properties: + - Name + - DisplayName + - where: + model-name: ManagementLockObject + set: + format-table: + properties: + - Name + - Level + - ResourceId + - where: + model-name: RoleAssignment + set: + format-table: + properties: + - DisplayName + - ObjectId + - ObjectType + - RoleDefinitionName + - Scope + - where: + model-name: RoleDefinition + set: + format-table: + properties: + - RoleName + - Name + - Action +# To remove cmdlets not used in the test frame + - where: + subject: Operation + remove: true + - where: + subject: Deployment + variant: (.*)1|Cancel(.*)|Validate(.*)|Export(.*)|List(.*)|Delete(.*)|Check(.*)|Calculate(.*) + remove: true + - where: + subject: ResourceProvider + variant: Register(.*)|Unregister(.*)|Get(.*) + remove: true + - where: + subject: ResourceGroup + variant: List(.*)|Update(.*)|Export(.*)|Move(.*) + remove: true + - where: + subject: Resource + remove: true + - where: + subject: Tag|TagValue + remove: true + - where: + subject: DeploymentOperation + remove: true + - where: + subject: DeploymentTemplate + remove: true + - where: + subject: Calculate(.*) + remove: true + - where: + subject: ResourceExistence + remove: true + - where: + subject: ResourceMoveResource + remove: true + - where: + subject: DeploymentExistence + remove: true +``` diff --git a/src/Kusto/tools/Resources/resources/CmdletSurface-latest-2019-04-30.md b/src/Kusto/tools/Resources/resources/CmdletSurface-latest-2019-04-30.md new file mode 100644 index 000000000000..278ea694e0fa --- /dev/null +++ b/src/Kusto/tools/Resources/resources/CmdletSurface-latest-2019-04-30.md @@ -0,0 +1,598 @@ +### AzADApplication [Get, New, Remove, Update] `IApplication, Boolean` + - TenantId `String` + - ObjectId `String` + - IncludeDeleted `SwitchParameter` + - InputObject `IResourcesIdentity` + - HardDelete `SwitchParameter` + - Filter `String` + - IdentifierUri `String` + - DisplayNameStartWith `String` + - DisplayName `String` + - ApplicationId `String` + - AllowGuestsSignIn `SwitchParameter` + - AllowPassthroughUser `SwitchParameter` + - AppLogoUrl `String` + - AppPermission `String[]` + - AppRole `IAppRole[]` + - AvailableToOtherTenants `SwitchParameter` + - ErrorUrl `String` + - GroupMembershipClaim `GroupMembershipClaimTypes` + - Homepage `String` + - InformationalUrlMarketing `String` + - InformationalUrlPrivacy `String` + - InformationalUrlSupport `String` + - InformationalUrlTermsOfService `String` + - IsDeviceOnlyAuthSupported `SwitchParameter` + - KeyCredentials `IKeyCredential[]` + - KnownClientApplication `String[]` + - LogoutUrl `String` + - Oauth2AllowImplicitFlow `SwitchParameter` + - Oauth2AllowUrlPathMatching `SwitchParameter` + - Oauth2Permission `IOAuth2Permission[]` + - Oauth2RequirePostResponse `SwitchParameter` + - OptionalClaimAccessToken `IOptionalClaim[]` + - OptionalClaimIdToken `IOptionalClaim[]` + - OptionalClaimSamlToken `IOptionalClaim[]` + - OrgRestriction `String[]` + - PasswordCredentials `IPasswordCredential[]` + - PreAuthorizedApplication `IPreAuthorizedApplication[]` + - PublicClient `SwitchParameter` + - PublisherDomain `String` + - ReplyUrl `String[]` + - RequiredResourceAccess `IRequiredResourceAccess[]` + - SamlMetadataUrl `String` + - SignInAudience `String` + - WwwHomepage `String` + - Parameter `IApplicationCreateParameters` + - PassThru `SwitchParameter` + - AvailableToOtherTenant `SwitchParameter` + +### AzADApplicationOwner [Add, Get, Remove] `Boolean, IDirectoryObject` + - ObjectId `String` + - TenantId `String` + - InputObject `IResourcesIdentity` + - OwnerObjectId `String` + - AdditionalProperties `Hashtable` + - Url `String` + - Parameter `IAddOwnerParameters` + +### AzADDeletedApplication [Restore] `IApplication` + - ObjectId `String` + - TenantId `String` + - InputObject `IResourcesIdentity` + +### AzADGroup [Get, New, Remove] `IAdGroup, Boolean` + - TenantId `String` + - ObjectId `String` + - InputObject `IResourcesIdentity` + - Filter `String` + - DisplayNameStartsWith `String` + - DisplayName `String` + - AdditionalProperties `Hashtable` + - MailNickname `String` + - Parameter `IGroupCreateParameters` + - PassThru `SwitchParameter` + +### AzADGroupMember [Add, Get, Remove, Test] `Boolean, IDirectoryObject, SwitchParameter` + - GroupObjectId `String` + - TenantId `String` + - MemberObjectId `String[]` + - MemberUserPrincipalName `String[]` + - GroupObject `IAdGroup` + - GroupDisplayName `String` + - InputObject `IResourcesIdentity` + - ObjectId `String` + - ShowOwner `SwitchParameter` + - PassThru `SwitchParameter` + - AdditionalProperties `Hashtable` + - Url `String` + - Parameter `IGroupAddMemberParameters` + - DisplayName `String` + - GroupId `String` + - MemberId `String` + +### AzADGroupMemberGroup [Get] `String` + - ObjectId `String` + - TenantId `String` + - InputObject `IResourcesIdentity` + - AdditionalProperties `Hashtable` + - SecurityEnabledOnly `SwitchParameter` + - Parameter `IGroupGetMemberGroupsParameters` + +### AzADGroupOwner [Add, Remove] `Boolean` + - ObjectId `String` + - TenantId `String` + - GroupObjectId `String` + - MemberObjectId `String[]` + - InputObject `IResourcesIdentity` + - OwnerObjectId `String` + - PassThru `SwitchParameter` + - AdditionalProperties `Hashtable` + - Url `String` + - Parameter `IAddOwnerParameters` + +### AzADObject [Get] `IDirectoryObject` + - TenantId `String` + - InputObject `IResourcesIdentity` + - AdditionalProperties `Hashtable` + - IncludeDirectoryObjectReference `SwitchParameter` + - ObjectId `String[]` + - Type `String[]` + - Parameter `IGetObjectsParameters` + +### AzADServicePrincipal [Get, New, Remove, Update] `IServicePrincipal, Boolean` + - TenantId `String` + - ObjectId `String` + - InputObject `IResourcesIdentity` + - Filter `String` + - ApplicationObject `IApplication` + - ServicePrincipalName `String` + - DisplayNameBeginsWith `String` + - DisplayName `String` + - ApplicationId `String` + - AccountEnabled `SwitchParameter` + - AppId `String` + - AppRoleAssignmentRequired `SwitchParameter` + - KeyCredentials `IKeyCredential[]` + - PasswordCredentials `IPasswordCredential[]` + - ServicePrincipalType `String` + - Tag `String[]` + - Parameter `IServicePrincipalCreateParameters` + - PassThru `SwitchParameter` + +### AzADServicePrincipalOwner [Get] `IDirectoryObject` + - ObjectId `String` + - TenantId `String` + +### AzADUser [Get, New, Remove, Update] `IUser, Boolean` + - TenantId `String` + - UpnOrObjectId `String` + - InputObject `IResourcesIdentity` + - Filter `String` + - DisplayName `String` + - StartsWith `String` + - Mail `String` + - MailNickname `String` + - Parameter `IUserCreateParameters` + - AccountEnabled `SwitchParameter` + - GivenName `String` + - ImmutableId `String` + - PasswordProfile `IPasswordProfile` + - Surname `String` + - UsageLocation `String` + - UserPrincipalName `String` + - UserType `UserType` + - PassThru `SwitchParameter` + - EnableAccount `SwitchParameter` + +### AzADUserMemberGroup [Get] `String` + - ObjectId `String` + - TenantId `String` + - InputObject `IResourcesIdentity` + - AdditionalProperties `Hashtable` + - SecurityEnabledOnly `SwitchParameter` + - Parameter `IUserGetMemberGroupsParameters` + +### AzApplicationKeyCredentials [Get, Update] `IKeyCredential, Boolean` + - ObjectId `String` + - TenantId `String` + - InputObject `IResourcesIdentity` + - Parameter `IKeyCredentialsUpdateParameters` + - Value `IKeyCredential[]` + +### AzApplicationPasswordCredentials [Get, Update] `IPasswordCredential, Boolean` + - ObjectId `String` + - TenantId `String` + - InputObject `IResourcesIdentity` + - Parameter `IPasswordCredentialsUpdateParameters` + - Value `IPasswordCredential[]` + +### AzAuthorizationOperation [Get] `IOperation` + +### AzClassicAdministrator [Get] `IClassicAdministrator` + - SubscriptionId `String[]` + +### AzDenyAssignment [Get] `IDenyAssignment` + - Id `String` + - Scope `String` + - InputObject `IResourcesIdentity` + - ParentResourcePath `String` + - ResourceGroupName `String` + - ResourceName `String` + - ResourceProviderNamespace `String` + - ResourceType `String` + - SubscriptionId `String[]` + - Filter `String` + +### AzDeployment [Get, New, Remove, Set, Stop, Test] `IDeploymentExtended, Boolean, IDeploymentValidateResult` + - SubscriptionId `String[]` + - Name `String` + - ResourceGroupName `String` + - Id `String` + - InputObject `IResourcesIdentity` + - Filter `String` + - Top `Int32` + - Parameter `IDeployment` + - DebugSettingDetailLevel `String` + - Location `String` + - Mode `DeploymentMode` + - OnErrorDeploymentName `String` + - OnErrorDeploymentType `OnErrorDeploymentType` + - ParameterLinkContentVersion `String` + - ParameterLinkUri `String` + - Template `IDeploymentPropertiesTemplate` + - TemplateLinkContentVersion `String` + - TemplateLinkUri `String` + - PassThru `SwitchParameter` + +### AzDeploymentExistence [Test] `Boolean` + - DeploymentName `String` + - SubscriptionId `String` + - ResourceGroupName `String` + - InputObject `IResourcesIdentity` + +### AzDeploymentOperation [Get] `IDeploymentOperation` + - DeploymentName `String` + - SubscriptionId `String[]` + - ResourceGroupName `String` + - OperationId `String` + - DeploymentObject `IDeploymentExtended` + - InputObject `IResourcesIdentity` + - Top `Int32` + +### AzDeploymentTemplate [Export] `IDeploymentExportResultTemplate` + - DeploymentName `String` + - SubscriptionId `String` + - ResourceGroupName `String` + - InputObject `IResourcesIdentity` + +### AzDomain [Get] `IDomain` + - TenantId `String` + - Name `String` + - InputObject `IResourcesIdentity` + - Filter `String` + +### AzElevateGlobalAdministratorAccess [Invoke] `Boolean` + +### AzEntity [Get] `IEntityInfo` + - Filter `String` + - GroupName `String` + - Search `String` + - Select `String` + - Skip `Int32` + - Skiptoken `String` + - Top `Int32` + - View `String` + - CacheControl `String` + +### AzManagedApplication [Get, New, Remove, Set, Update] `IApplication, Boolean` + - Id `String` + - Name `String` + - ResourceGroupName `String` + - SubscriptionId `String[]` + - InputObject `IResourcesIdentity` + - Parameter `IApplication` + - ApplicationDefinitionId `String` + - IdentityType `ResourceIdentityType` + - Kind `String` + - Location `String` + - ManagedBy `String` + - ManagedResourceGroupId `String` + - PlanName `String` + - PlanProduct `String` + - PlanPromotionCode `String` + - PlanPublisher `String` + - PlanVersion `String` + - SkuCapacity `Int32` + - SkuFamily `String` + - SkuModel `String` + - SkuName `String` + - SkuSize `String` + - SkuTier `String` + - Tag `Hashtable` + +### AzManagedApplicationDefinition [Get, New, Remove, Set] `IApplicationDefinition, Boolean` + - Id `String` + - Name `String` + - ResourceGroupName `String` + - SubscriptionId `String[]` + - InputObject `IResourcesIdentity` + - Parameter `IApplicationDefinition` + - Artifact `IApplicationArtifact[]` + - Authorization `IApplicationProviderAuthorization[]` + - CreateUiDefinition `IApplicationDefinitionPropertiesCreateUiDefinition` + - Description `String` + - DisplayName `String` + - IdentityType `ResourceIdentityType` + - IsEnabled `String` + - Location `String` + - LockLevel `ApplicationLockLevel` + - MainTemplate `IApplicationDefinitionPropertiesMainTemplate` + - ManagedBy `String` + - PackageFileUri `String` + - SkuCapacity `Int32` + - SkuFamily `String` + - SkuModel `String` + - SkuName `String` + - SkuSize `String` + - SkuTier `String` + - Tag `Hashtable` + +### AzManagementGroup [Get, New, Remove, Set, Update] `IManagementGroup, IManagementGroupInfo, Boolean` + - GroupId `String` + - InputObject `IResourcesIdentity` + - Skiptoken `String` + - Expand `String` + - Filter `String` + - Recurse `SwitchParameter` + - CacheControl `String` + - DisplayName `String` + - Name `String` + - ParentId `String` + - CreateManagementGroupRequest `ICreateManagementGroupRequest` + - PatchGroupRequest `IPatchManagementGroupRequest` + +### AzManagementGroupDescendant [Get] `IDescendantInfo` + - GroupId `String` + - InputObject `IResourcesIdentity` + - Skiptoken `String` + - Top `Int32` + +### AzManagementGroupSubscription [New, Remove] `Boolean` + - GroupId `String` + - SubscriptionId `String` + - InputObject `IResourcesIdentity` + - CacheControl `String` + +### AzManagementLock [Get, New, Remove, Set] `IManagementLockObject, Boolean` + - SubscriptionId `String[]` + - LockName `String` + - ResourceGroupName `String` + - ParentResourcePath `String` + - ResourceName `String` + - ResourceProviderNamespace `String` + - ResourceType `String` + - Scope `String` + - InputObject `IResourcesIdentity` + - Filter `String` + - Level `LockLevel` + - Note `String` + - Owner `IManagementLockOwner[]` + - Parameter `IManagementLockObject` + +### AzNameAvailability [Test] `ICheckNameAvailabilityResult` + - Name `String` + - Type `Type` + - CheckNameAvailabilityRequest `ICheckNameAvailabilityRequest` + +### AzOAuth2PermissionGrant [Get, New, Remove] `IOAuth2PermissionGrant, Boolean` + - TenantId `String` + - InputObject `IResourcesIdentity` + - Filter `String` + - ClientId `String` + - ConsentType `ConsentType` + - ExpiryTime `String` + - ObjectId `String` + - OdataType `String` + - PrincipalId `String` + - ResourceId `String` + - Scope `String` + - StartTime `String` + - Body `IOAuth2PermissionGrant` + +### AzPermission [Get] `IPermission` + - ResourceGroupName `String` + - SubscriptionId `String[]` + - ParentResourcePath `String` + - ResourceName `String` + - ResourceProviderNamespace `String` + - ResourceType `String` + +### AzPolicyAssignment [Get, New, Remove] `IPolicyAssignment` + - Id `String` + - Name `String` + - Scope `String` + - InputObject `IResourcesIdentity` + - ParentResourcePath `String` + - ResourceGroupName `String` + - ResourceName `String` + - ResourceProviderNamespace `String` + - ResourceType `String` + - SubscriptionId `String[]` + - PolicyDefinitionId `String` + - IncludeDescendent `SwitchParameter` + - Filter `String` + - Parameter `IPolicyAssignment` + - Description `String` + - DisplayName `String` + - IdentityType `ResourceIdentityType` + - Location `String` + - Metadata `IPolicyAssignmentPropertiesMetadata` + - NotScope `String[]` + - SkuName `String` + - SkuTier `String` + - PropertiesScope `String` + +### AzPolicyDefinition [Get, New, Remove, Set] `IPolicyDefinition, Boolean` + - SubscriptionId `String[]` + - Name `String` + - ManagementGroupName `String` + - Id `String` + - InputObject `IResourcesIdentity` + - BuiltIn `SwitchParameter` + - Parameter `IPolicyDefinition` + - Description `String` + - DisplayName `String` + - Metadata `IPolicyDefinitionPropertiesMetadata` + - Mode `PolicyMode` + - PolicyRule `IPolicyDefinitionPropertiesPolicyRule` + - PolicyType `PolicyType` + - PassThru `SwitchParameter` + +### AzPolicySetDefinition [Get, New, Remove, Set] `IPolicySetDefinition, Boolean` + - SubscriptionId `String[]` + - Name `String` + - ManagementGroupName `String` + - Id `String` + - InputObject `IResourcesIdentity` + - BuiltIn `SwitchParameter` + - Parameter `IPolicySetDefinition` + - Description `String` + - DisplayName `String` + - Metadata `IPolicySetDefinitionPropertiesMetadata` + - PolicyDefinition `IPolicyDefinitionReference[]` + - PolicyType `PolicyType` + - PassThru `SwitchParameter` + +### AzProviderFeature [Get, Register] `IFeatureResult` + - SubscriptionId `String[]` + - Name `String` + - ResourceProviderNamespace `String` + - InputObject `IResourcesIdentity` + +### AzProviderOperationsMetadata [Get] `IProviderOperationsMetadata` + - ResourceProviderNamespace `String` + - InputObject `IResourcesIdentity` + - Expand `String` + +### AzResource [Get, Move, New, Remove, Set, Test, Update] `IGenericResource, Boolean` + - ResourceId `String` + - Name `String` + - ParentResourcePath `String` + - ProviderNamespace `String` + - ResourceGroupName `String` + - ResourceType `String` + - SubscriptionId `String[]` + - InputObject `IResourcesIdentity` + - SourceResourceGroupName `String` + - ResourceName `String` + - ResourceProviderNamespace `String` + - Expand `String` + - Top `Int32` + - TagName `String` + - TagValue `String` + - Tag `Hashtable` + - Filter `String` + - PassThru `SwitchParameter` + - Resource `String[]` + - TargetResourceGroup `String` + - TargetSubscriptionId `String` + - TargetResourceGroupName `String` + - Parameter `IResourcesMoveInfo` + - IdentityType `ResourceIdentityType` + - IdentityUserAssignedIdentity `Hashtable` + - Kind `String` + - Location `String` + - ManagedBy `String` + - PlanName `String` + - PlanProduct `String` + - PlanPromotionCode `String` + - PlanPublisher `String` + - PlanVersion `String` + - Property `IGenericResourceProperties` + - SkuCapacity `Int32` + - SkuFamily `String` + - SkuModel `String` + - SkuName `String` + - SkuSize `String` + - SkuTier `String` + +### AzResourceGroup [Export, Get, New, Remove, Set, Test, Update] `IResourceGroupExportResult, IResourceGroup, Boolean` + - ResourceGroupName `String` + - SubscriptionId `String` + - InputObject `IResourcesIdentity` + - Name `String` + - Id `String` + - Filter `String` + - Top `Int32` + - TagName `String` + - TagValue `String` + - Tag `Hashtable` + - Option `String` + - Resource `String[]` + - Parameter `IExportTemplateRequest` + - Location `String` + - ManagedBy `String` + +### AzResourceLink [Get, New, Remove, Set] `IResourceLink, Boolean` + - ResourceId `String` + - InputObject `IResourcesIdentity` + - SubscriptionId `String[]` + - Scope `String` + - FilterById `String` + - FilterByScope `Filter` + - Note `String` + - TargetId `String` + - Parameter `IResourceLink` + +### AzResourceMove [Test] `Boolean` + - SourceResourceGroupName `String` + - SubscriptionId `String` + - InputObject `IResourcesIdentity` + - PassThru `SwitchParameter` + - Resource `String[]` + - TargetResourceGroup `String` + - TargetSubscriptionId `String` + - TargetResourceGroupName `String` + - Parameter `IResourcesMoveInfo` + +### AzResourceProvider [Get, Register, Unregister] `IProvider` + - SubscriptionId `String[]` + - ResourceProviderNamespace `String` + - InputObject `IResourcesIdentity` + - Expand `String` + - Top `Int32` + +### AzResourceProviderOperationDetail [Get] `IResourceProviderOperationDefinition` + - ResourceProviderNamespace `String` + +### AzRoleAssignment [Get, New, Remove] `IRoleAssignment` + - Id `String` + - Name `String` + - Scope `String` + - RoleId `String` + - InputObject `IResourcesIdentity` + - ParentResourceId `String` + - ResourceGroupName `String` + - ResourceName `String` + - ResourceProviderNamespace `String` + - ResourceType `String` + - SubscriptionId `String[]` + - ExpandPrincipalGroups `String` + - ServicePrincipalName `String` + - SignInName `String` + - Filter `String` + - CanDelegate `SwitchParameter` + - PrincipalId `String` + - RoleDefinitionId `String` + - Parameter `IRoleAssignmentCreateParameters` + - PrincipalType `PrincipalType` + +### AzRoleDefinition [Get, New, Remove, Set] `IRoleDefinition` + - Id `String` + - Scope `String` + - InputObject `IResourcesIdentity` + - Name `String` + - Custom `SwitchParameter` + - Filter `String` + - AssignableScope `String[]` + - Description `String` + - Permission `IPermission[]` + - RoleName `String` + - RoleType `String` + - RoleDefinition `IRoleDefinition` + +### AzSubscriptionLocation [Get] `ILocation` + - SubscriptionId `String[]` + +### AzTag [Get, New, Remove] `ITagDetails, Boolean` + - SubscriptionId `String[]` + - Name `String` + - Value `String` + - InputObject `IResourcesIdentity` + - PassThru `SwitchParameter` + +### AzTenantBackfill [Start] `ITenantBackfillStatusResult` + +### AzTenantBackfillStatus [Invoke] `ITenantBackfillStatusResult` + diff --git a/src/Kusto/tools/Resources/resources/ModelSurface.md b/src/Kusto/tools/Resources/resources/ModelSurface.md new file mode 100644 index 000000000000..378e3ec418a8 --- /dev/null +++ b/src/Kusto/tools/Resources/resources/ModelSurface.md @@ -0,0 +1,1645 @@ +### AddOwnerParameters \ [Api16] + - Url `String` + +### AdGroup \ [Api16] + - DeletionTimestamp `DateTime?` **{MinValue, MaxValue}** + - DisplayName `String` + - Mail `String` + - MailEnabled `Boolean?` + - MailNickname `String` + - ObjectId `String` + - ObjectType `String` + - SecurityEnabled `Boolean?` + +### AliasPathType [Api20180501] + - ApiVersion `String[]` + - Path `String` + +### AliasType [Api20180501] + - Name `String` + - Path `IAliasPathType[]` + +### Appliance [Api20160901Preview] + - DefinitionId `String` + - Id `String` + - Identity `IIdentity` + - IdentityPrincipalId `String` + - IdentityTenantId `String` + - IdentityType `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** + - Kind `String` + - Location `String` + - ManagedBy `String` + - ManagedResourceGroupId `String` + - Name `String` + - Output `IAppliancePropertiesOutputs` + - Parameter `IAppliancePropertiesParameters` + - PlanName `String` + - PlanProduct `String` + - PlanPromotionCode `String` + - PlanPublisher `String` + - PlanVersion `String` + - ProvisioningState `String` + - Sku `ISku` + - SkuCapacity `Int32?` + - SkuFamily `String` + - SkuModel `String` + - SkuName `String` + - SkuSize `String` + - SkuTier `String` + - Tag `IResourceTags ` + - Type `String` + - UiDefinitionUri `String` + +### ApplianceArtifact [Api20160901Preview] + - Name `String` + - Type `ApplianceArtifactType?` **{Custom, Template}** + - Uri `String` + +### ApplianceDefinition [Api20160901Preview] + - Artifact `IApplianceArtifact[]` + - Authorization `IApplianceProviderAuthorization[]` + - Description `String` + - DisplayName `String` + - Id `String` + - Identity `IIdentity` + - IdentityPrincipalId `String` + - IdentityTenantId `String` + - IdentityType `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** + - Location `String` + - LockLevel `ApplianceLockLevel` **{CanNotDelete, None, ReadOnly}** + - ManagedBy `String` + - Name `String` + - PackageFileUri `String` + - Sku `ISku` + - SkuCapacity `Int32?` + - SkuFamily `String` + - SkuModel `String` + - SkuName `String` + - SkuSize `String` + - SkuTier `String` + - Tag `IResourceTags ` + - Type `String` + +### ApplianceDefinitionListResult [Api20160901Preview] + - NextLink `String` + - Value `IApplianceDefinition[]` + +### ApplianceDefinitionProperties [Api20160901Preview] + - Artifact `IApplianceArtifact[]` + - Authorization `IApplianceProviderAuthorization[]` + - Description `String` + - DisplayName `String` + - LockLevel `ApplianceLockLevel` **{CanNotDelete, None, ReadOnly}** + - PackageFileUri `String` + +### ApplianceListResult [Api20160901Preview] + - NextLink `String` + - Value `IAppliance[]` + +### AppliancePatchable [Api20160901Preview] + - ApplianceDefinitionId `String` + - Id `String` + - Identity `IIdentity` + - IdentityPrincipalId `String` + - IdentityTenantId `String` + - IdentityType `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** + - Kind `String` + - Location `String` + - ManagedBy `String` + - ManagedResourceGroupId `String` + - Name `String` + - Output `IAppliancePropertiesPatchableOutputs` + - Parameter `IAppliancePropertiesPatchableParameters` + - PlanName `String` + - PlanProduct `String` + - PlanPromotionCode `String` + - PlanPublisher `String` + - PlanVersion `String` + - ProvisioningState `String` + - Sku `ISku` + - SkuCapacity `Int32?` + - SkuFamily `String` + - SkuModel `String` + - SkuName `String` + - SkuSize `String` + - SkuTier `String` + - Tag `IResourceTags ` + - Type `String` + - UiDefinitionUri `String` + +### ApplianceProperties [Api20160901Preview] + - ApplianceDefinitionId `String` + - ManagedResourceGroupId `String` + - Output `IAppliancePropertiesOutputs` + - Parameter `IAppliancePropertiesParameters` + - ProvisioningState `String` + - UiDefinitionUri `String` + +### AppliancePropertiesPatchable [Api20160901Preview] + - ApplianceDefinitionId `String` + - ManagedResourceGroupId `String` + - Output `IAppliancePropertiesPatchableOutputs` + - Parameter `IAppliancePropertiesPatchableParameters` + - ProvisioningState `String` + - UiDefinitionUri `String` + +### ApplianceProviderAuthorization [Api20160901Preview] + - PrincipalId `String` + - RoleDefinitionId `String` + +### Application \ [Api16, Api20170901, Api20180601] + - AllowGuestsSignIn `Boolean?` + - AllowPassthroughUser `Boolean?` + - AppId `String` + - AppLogoUrl `String` + - AppPermission `String[]` + - AppRole `IAppRole[]` + - AvailableToOtherTenant `Boolean?` + - DefinitionId `String` + - DeletionTimestamp `DateTime?` **{MinValue, MaxValue}** + - DisplayName `String` + - ErrorUrl `String` + - GroupMembershipClaim `GroupMembershipClaimTypes?` **{All, None, SecurityGroup}** + - Homepage `String` + - Id `String` + - IdentifierUri `String[]` + - Identity `IIdentity` + - IdentityPrincipalId `String` + - IdentityTenantId `String` + - IdentityType `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** + - InformationalUrlMarketing `String` + - InformationalUrlPrivacy `String` + - InformationalUrlSupport `String` + - InformationalUrlTermsOfService `String` + - IsDeviceOnlyAuthSupported `Boolean?` + - KeyCredentials `IKeyCredential[]` + - Kind `String` + - KnownClientApplication `String[]` + - Location `String` + - LogoutUrl `String` + - ManagedBy `String` + - ManagedResourceGroupId `String` + - Name `String` + - Oauth2AllowImplicitFlow `Boolean?` + - Oauth2AllowUrlPathMatching `Boolean?` + - Oauth2Permission `IOAuth2Permission[]` + - Oauth2RequirePostResponse `Boolean?` + - ObjectId `String` + - ObjectType `String` + - OptionalClaimAccessToken `IOptionalClaim[]` + - OptionalClaimIdToken `IOptionalClaim[]` + - OptionalClaimSamlToken `IOptionalClaim[]` + - OrgRestriction `String[]` + - Output `IApplicationPropertiesOutputs` + - Parameter `IApplicationPropertiesParameters` + - PasswordCredentials `IPasswordCredential[]` + - PlanName `String` + - PlanProduct `String` + - PlanPromotionCode `String` + - PlanPublisher `String` + - PlanVersion `String` + - PreAuthorizedApplication `IPreAuthorizedApplication[]` + - ProvisioningState `String` + - PublicClient `Boolean?` + - PublisherDomain `String` + - ReplyUrl `String[]` + - RequiredResourceAccess `IRequiredResourceAccess[]` + - SamlMetadataUrl `String` + - SignInAudience `String` + - Sku `ISku` + - SkuCapacity `Int32?` + - SkuFamily `String` + - SkuModel `String` + - SkuName `String` + - SkuSize `String` + - SkuTier `String` + - Tag `IResourceTags ` + - Type `String` + - UiDefinitionUri `String` + - WwwHomepage `String` + +### ApplicationArtifact [Api20170901] + - Name `String` + - Type `ApplicationArtifactType?` **{Custom, Template}** + - Uri `String` + +### ApplicationBase [Api16] + - AllowGuestsSignIn `Boolean?` + - AllowPassthroughUser `Boolean?` + - AppLogoUrl `String` + - AppPermission `String[]` + - AppRole `IAppRole[]` + - AvailableToOtherTenant `Boolean?` + - ErrorUrl `String` + - GroupMembershipClaim `GroupMembershipClaimTypes?` **{All, None, SecurityGroup}** + - Homepage `String` + - InformationalUrlMarketing `String` + - InformationalUrlPrivacy `String` + - InformationalUrlSupport `String` + - InformationalUrlTermsOfService `String` + - IsDeviceOnlyAuthSupported `Boolean?` + - KeyCredentials `IKeyCredential[]` + - KnownClientApplication `String[]` + - LogoutUrl `String` + - Oauth2AllowImplicitFlow `Boolean?` + - Oauth2AllowUrlPathMatching `Boolean?` + - Oauth2Permission `IOAuth2Permission[]` + - Oauth2RequirePostResponse `Boolean?` + - OptionalClaimAccessToken `IOptionalClaim[]` + - OptionalClaimIdToken `IOptionalClaim[]` + - OptionalClaimSamlToken `IOptionalClaim[]` + - OrgRestriction `String[]` + - PasswordCredentials `IPasswordCredential[]` + - PreAuthorizedApplication `IPreAuthorizedApplication[]` + - PublicClient `Boolean?` + - PublisherDomain `String` + - ReplyUrl `String[]` + - RequiredResourceAccess `IRequiredResourceAccess[]` + - SamlMetadataUrl `String` + - SignInAudience `String` + - WwwHomepage `String` + +### ApplicationCreateParameters [Api16] + - AllowGuestsSignIn `Boolean?` + - AllowPassthroughUser `Boolean?` + - AppLogoUrl `String` + - AppPermission `String[]` + - AppRole `IAppRole[]` + - AvailableToOtherTenant `Boolean?` + - DisplayName `String` + - ErrorUrl `String` + - GroupMembershipClaim `GroupMembershipClaimTypes?` **{All, None, SecurityGroup}** + - Homepage `String` + - IdentifierUri `String[]` + - InformationalUrl `IInformationalUrl` + - InformationalUrlMarketing `String` + - InformationalUrlPrivacy `String` + - InformationalUrlSupport `String` + - InformationalUrlTermsOfService `String` + - IsDeviceOnlyAuthSupported `Boolean?` + - KeyCredentials `IKeyCredential[]` + - KnownClientApplication `String[]` + - LogoutUrl `String` + - Oauth2AllowImplicitFlow `Boolean?` + - Oauth2AllowUrlPathMatching `Boolean?` + - Oauth2Permission `IOAuth2Permission[]` + - Oauth2RequirePostResponse `Boolean?` + - OptionalClaim `IOptionalClaims` + - OptionalClaimAccessToken `IOptionalClaim[]` + - OptionalClaimIdToken `IOptionalClaim[]` + - OptionalClaimSamlToken `IOptionalClaim[]` + - OrgRestriction `String[]` + - PasswordCredentials `IPasswordCredential[]` + - PreAuthorizedApplication `IPreAuthorizedApplication[]` + - PublicClient `Boolean?` + - PublisherDomain `String` + - ReplyUrl `String[]` + - RequiredResourceAccess `IRequiredResourceAccess[]` + - SamlMetadataUrl `String` + - SignInAudience `String` + - WwwHomepage `String` + +### ApplicationDefinition [Api20170901] + - Artifact `IApplicationArtifact[]` + - Authorization `IApplicationProviderAuthorization[]` + - CreateUiDefinition `IApplicationDefinitionPropertiesCreateUiDefinition` + - Description `String` + - DisplayName `String` + - Id `String` + - Identity `IIdentity` + - IdentityPrincipalId `String` + - IdentityTenantId `String` + - IdentityType `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** + - IsEnabled `String` + - Location `String` + - LockLevel `ApplicationLockLevel` **{CanNotDelete, None, ReadOnly}** + - MainTemplate `IApplicationDefinitionPropertiesMainTemplate` + - ManagedBy `String` + - Name `String` + - PackageFileUri `String` + - Sku `ISku` + - SkuCapacity `Int32?` + - SkuFamily `String` + - SkuModel `String` + - SkuName `String` + - SkuSize `String` + - SkuTier `String` + - Tag `IResourceTags ` + - Type `String` + +### ApplicationDefinitionListResult [Api20180601] + - NextLink `String` + - Value `IApplicationDefinition[]` + +### ApplicationDefinitionProperties [Api20170901] + - Artifact `IApplicationArtifact[]` + - Authorization `IApplicationProviderAuthorization[]` + - CreateUiDefinition `IApplicationDefinitionPropertiesCreateUiDefinition` + - Description `String` + - DisplayName `String` + - IsEnabled `String` + - LockLevel `ApplicationLockLevel` **{CanNotDelete, None, ReadOnly}** + - MainTemplate `IApplicationDefinitionPropertiesMainTemplate` + - PackageFileUri `String` + +### ApplicationListResult [Api16, Api20180601] + - NextLink `String` + - OdataNextLink `String` + - Value `IApplication[]` + +### ApplicationPatchable [Api20170901, Api20180601] + - ApplicationDefinitionId `String` + - Id `String` + - Identity `IIdentity` + - IdentityPrincipalId `String` + - IdentityTenantId `String` + - IdentityType `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** + - Kind `String` + - Location `String` + - ManagedBy `String` + - ManagedResourceGroupId `String` + - Name `String` + - Output `IApplicationPropertiesPatchableOutputs` + - Parameter `IApplicationPropertiesPatchableParameters` + - PlanName `String` + - PlanProduct `String` + - PlanPromotionCode `String` + - PlanPublisher `String` + - PlanVersion `String` + - ProvisioningState `String` + - Sku `ISku` + - SkuCapacity `Int32?` + - SkuFamily `String` + - SkuModel `String` + - SkuName `String` + - SkuSize `String` + - SkuTier `String` + - Tag `IResourceTags ` + - Type `String` + - UiDefinitionUri `String` + +### ApplicationProperties [Api20170901, Api20180601] + - ApplicationDefinitionId `String` + - ManagedResourceGroupId `String` + - Output `IApplicationPropertiesOutputs` + - Parameter `IApplicationPropertiesParameters` + - ProvisioningState `String` + - UiDefinitionUri `String` + +### ApplicationPropertiesPatchable [Api20170901, Api20180601] + - ApplicationDefinitionId `String` + - ManagedResourceGroupId `String` + - Output `IApplicationPropertiesPatchableOutputs` + - Parameter `IApplicationPropertiesPatchableParameters` + - ProvisioningState `String` + - UiDefinitionUri `String` + +### ApplicationProviderAuthorization [Api20170901] + - PrincipalId `String` + - RoleDefinitionId `String` + +### ApplicationUpdateParameters [Api16] + - AllowGuestsSignIn `Boolean?` + - AllowPassthroughUser `Boolean?` + - AppLogoUrl `String` + - AppPermission `String[]` + - AppRole `IAppRole[]` + - AvailableToOtherTenant `Boolean?` + - DisplayName `String` + - ErrorUrl `String` + - GroupMembershipClaim `GroupMembershipClaimTypes?` **{All, None, SecurityGroup}** + - Homepage `String` + - IdentifierUri `String[]` + - InformationalUrl `IInformationalUrl` + - InformationalUrlMarketing `String` + - InformationalUrlPrivacy `String` + - InformationalUrlSupport `String` + - InformationalUrlTermsOfService `String` + - IsDeviceOnlyAuthSupported `Boolean?` + - KeyCredentials `IKeyCredential[]` + - KnownClientApplication `String[]` + - LogoutUrl `String` + - Oauth2AllowImplicitFlow `Boolean?` + - Oauth2AllowUrlPathMatching `Boolean?` + - Oauth2Permission `IOAuth2Permission[]` + - Oauth2RequirePostResponse `Boolean?` + - OptionalClaim `IOptionalClaims` + - OptionalClaimAccessToken `IOptionalClaim[]` + - OptionalClaimIdToken `IOptionalClaim[]` + - OptionalClaimSamlToken `IOptionalClaim[]` + - OrgRestriction `String[]` + - PasswordCredentials `IPasswordCredential[]` + - PreAuthorizedApplication `IPreAuthorizedApplication[]` + - PublicClient `Boolean?` + - PublisherDomain `String` + - ReplyUrl `String[]` + - RequiredResourceAccess `IRequiredResourceAccess[]` + - SamlMetadataUrl `String` + - SignInAudience `String` + - WwwHomepage `String` + +### AppRole [Api16] + - AllowedMemberType `String[]` + - Description `String` + - DisplayName `String` + - Id `String` + - IsEnabled `Boolean?` + - Value `String` + +### BasicDependency [Api20180501] + - Id `String` + - ResourceName `String` + - ResourceType `String` + +### CheckGroupMembershipParameters \ [Api16] + - GroupId `String` + - MemberId `String` + +### CheckGroupMembershipResult \ [Api16] + - Value `Boolean?` + +### CheckNameAvailabilityRequest [Api20180301Preview] + - Name `String` + - Type `Type?` **{ProvidersMicrosoftManagementGroups}** + +### CheckNameAvailabilityResult [Api20180301Preview] + - Message `String` + - NameAvailable `Boolean?` + - Reason `Reason?` **{AlreadyExists, Invalid}** + +### ClassicAdministrator [Api20150701] + - EmailAddress `String` + - Id `String` + - Name `String` + - Role `String` + - Type `String` + +### ClassicAdministratorListResult [Api20150701] + - NextLink `String` + - Value `IClassicAdministrator[]` + +### ClassicAdministratorProperties [Api20150701] + - EmailAddress `String` + - Role `String` + +### ComponentsSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties [Api20180501] + - ClientId `String` + - PrincipalId `String` + +### CreateManagementGroupChildInfo [Api20180301Preview] + - Child `ICreateManagementGroupChildInfo[]` + - DisplayName `String` + - Id `String` + - Name `String` + - Role `String[]` + - Type `String` + +### CreateManagementGroupDetails [Api20180301Preview] + - ParentDisplayName `String` + - ParentId `String` + - ParentName `String` + - UpdatedBy `String` + - UpdatedTime `DateTime?` **{MinValue, MaxValue}** + - Version `Single?` + +### CreateManagementGroupProperties [Api20180301Preview] + - Child `ICreateManagementGroupChildInfo[]` + - DetailUpdatedBy `String` + - DetailUpdatedTime `DateTime?` **{MinValue, MaxValue}** + - DetailVersion `Single?` + - DisplayName `String` + - ParentDisplayName `String` + - ParentId `String` + - ParentName `String` + - Role `String[]` + - TenantId `String` + +### CreateManagementGroupRequest [Api20180301Preview] + - Child `ICreateManagementGroupChildInfo[]` + - DetailUpdatedBy `String` + - DetailUpdatedTime `DateTime?` **{MinValue, MaxValue}** + - DetailVersion `Single?` + - DisplayName `String` + - Id `String` + - Name `String` + - ParentDisplayName `String` + - ParentId `String` + - ParentName `String` + - Role `String[]` + - TenantId `String` + - Type `String` + +### CreateParentGroupInfo [Api20180301Preview] + - DisplayName `String` + - Id `String` + - Name `String` + +### DebugSetting [Api20180501] + - DetailLevel `String` + +### DenyAssignment [Api20180701Preview] + - DenyAssignmentName `String` + - Description `String` + - DoNotApplyToChildScope `Boolean?` + - ExcludePrincipal `IPrincipal[]` + - Id `String` + - IsSystemProtected `Boolean?` + - Name `String` + - Permission `IDenyAssignmentPermission[]` + - Principal `IPrincipal[]` + - Scope `String` + - Type `String` + +### DenyAssignmentListResult [Api20180701Preview] + - NextLink `String` + - Value `IDenyAssignment[]` + +### DenyAssignmentPermission [Api20180701Preview] + - Action `String[]` + - DataAction `String[]` + - NotAction `String[]` + - NotDataAction `String[]` + +### DenyAssignmentProperties [Api20180701Preview] + - DenyAssignmentName `String` + - Description `String` + - DoNotApplyToChildScope `Boolean?` + - ExcludePrincipal `IPrincipal[]` + - IsSystemProtected `Boolean?` + - Permission `IDenyAssignmentPermission[]` + - Principal `IPrincipal[]` + - Scope `String` + +### Dependency [Api20180501] + - DependsOn `IBasicDependency[]` + - Id `String` + - ResourceName `String` + - ResourceType `String` + +### Deployment [Api20180501] + - DebugSettingDetailLevel `String` + - Location `String` + - Mode `DeploymentMode` **{Complete, Incremental}** + - OnErrorDeploymentName `String` + - OnErrorDeploymentType `OnErrorDeploymentType?` **{LastSuccessful, SpecificDeployment}** + - Parameter `IDeploymentPropertiesParameters` + - ParameterLinkContentVersion `String` + - ParameterLinkUri `String` + - Template `IDeploymentPropertiesTemplate` + - TemplateLinkContentVersion `String` + - TemplateLinkUri `String` + +### DeploymentExportResult [Api20180501] + - Template `IDeploymentExportResultTemplate` + +### DeploymentExtended [Api20180501] + - CorrelationId `String` + - DebugSettingDetailLevel `String` + - Dependency `IDependency[]` + - Id `String` + - Location `String` + - Mode `DeploymentMode?` **{Complete, Incremental}** + - Name `String` + - OnErrorDeploymentName `String` + - OnErrorDeploymentProvisioningState `String` + - OnErrorDeploymentType `OnErrorDeploymentType?` **{LastSuccessful, SpecificDeployment}** + - Output `IDeploymentPropertiesExtendedOutputs` + - Parameter `IDeploymentPropertiesExtendedParameters` + - ParameterLinkContentVersion `String` + - ParameterLinkUri `String` + - Provider `IProvider[]` + - ProvisioningState `String` + - Template `IDeploymentPropertiesExtendedTemplate` + - TemplateLinkContentVersion `String` + - TemplateLinkUri `String` + - Timestamp `DateTime?` **{MinValue, MaxValue}** + - Type `String` + +### DeploymentListResult [Api20180501] + - NextLink `String` + - Value `IDeploymentExtended[]` + +### DeploymentOperation [Api20180501] + - Id `String` + - OperationId `String` + - ProvisioningState `String` + - RequestContent `IHttpMessageContent` + - ResponseContent `IHttpMessageContent` + - ServiceRequestId `String` + - StatusCode `String` + - StatusMessage `IDeploymentOperationPropertiesStatusMessage` + - TargetResourceId `String` + - TargetResourceName `String` + - TargetResourceType `String` + - Timestamp `DateTime?` **{MinValue, MaxValue}** + +### DeploymentOperationProperties [Api20180501] + - ProvisioningState `String` + - RequestContent `IHttpMessageContent` + - ResponseContent `IHttpMessageContent` + - ServiceRequestId `String` + - StatusCode `String` + - StatusMessage `IDeploymentOperationPropertiesStatusMessage` + - TargetResourceId `String` + - TargetResourceName `String` + - TargetResourceType `String` + - Timestamp `DateTime?` **{MinValue, MaxValue}** + +### DeploymentOperationsListResult [Api20180501] + - NextLink `String` + - Value `IDeploymentOperation[]` + +### DeploymentProperties [Api20180501] + - DebugSettingDetailLevel `String` + - Mode `DeploymentMode` **{Complete, Incremental}** + - OnErrorDeploymentName `String` + - OnErrorDeploymentType `OnErrorDeploymentType?` **{LastSuccessful, SpecificDeployment}** + - Parameter `IDeploymentPropertiesParameters` + - ParameterLinkContentVersion `String` + - ParameterLinkUri `String` + - Template `IDeploymentPropertiesTemplate` + - TemplateLinkContentVersion `String` + - TemplateLinkUri `String` + +### DeploymentPropertiesExtended [Api20180501] + - CorrelationId `String` + - DebugSettingDetailLevel `String` + - Dependency `IDependency[]` + - Mode `DeploymentMode?` **{Complete, Incremental}** + - OnErrorDeploymentName `String` + - OnErrorDeploymentProvisioningState `String` + - OnErrorDeploymentType `OnErrorDeploymentType?` **{LastSuccessful, SpecificDeployment}** + - Output `IDeploymentPropertiesExtendedOutputs` + - Parameter `IDeploymentPropertiesExtendedParameters` + - ParameterLinkContentVersion `String` + - ParameterLinkUri `String` + - Provider `IProvider[]` + - ProvisioningState `String` + - Template `IDeploymentPropertiesExtendedTemplate` + - TemplateLinkContentVersion `String` + - TemplateLinkUri `String` + - Timestamp `DateTime?` **{MinValue, MaxValue}** + +### DeploymentValidateResult [Api20180501] + - CorrelationId `String` + - DebugSettingDetailLevel `String` + - Dependency `IDependency[]` + - ErrorCode `String` + - ErrorDetail `IResourceManagementErrorWithDetails[]` + - ErrorMessage `String` + - ErrorTarget `String` + - Mode `DeploymentMode?` **{Complete, Incremental}** + - OnErrorDeploymentName `String` + - OnErrorDeploymentProvisioningState `String` + - OnErrorDeploymentType `OnErrorDeploymentType?` **{LastSuccessful, SpecificDeployment}** + - Output `IDeploymentPropertiesExtendedOutputs` + - Parameter `IDeploymentPropertiesExtendedParameters` + - ParameterLinkContentVersion `String` + - ParameterLinkUri `String` + - Provider `IProvider[]` + - ProvisioningState `String` + - Template `IDeploymentPropertiesExtendedTemplate` + - TemplateLinkContentVersion `String` + - TemplateLinkUri `String` + - Timestamp `DateTime?` **{MinValue, MaxValue}** + +### DescendantInfo [Api20180301Preview] + - DisplayName `String` + - Id `String` + - Name `String` + - ParentId `String` + - Type `String` + +### DescendantInfoProperties [Api20180301Preview] + - DisplayName `String` + - ParentId `String` + +### DescendantListResult [Api20180301Preview] + - NextLink `String` + - Value `IDescendantInfo[]` + +### DescendantParentGroupInfo [Api20180301Preview] + - Id `String` + +### DirectoryObject \ [Api16] + - DeletionTimestamp `DateTime?` **{MinValue, MaxValue}** + - ObjectId `String` + - ObjectType `String` + +### DirectoryObjectListResult [Api16] + - OdataNextLink `String` + - Value `IDirectoryObject[]` + +### Domain \ [Api16] + - AuthenticationType `String` + - IsDefault `Boolean?` + - IsVerified `Boolean?` + - Name `String` + +### DomainListResult [Api16] + - Value `IDomain[]` + +### EntityInfo [Api20180301Preview] + - DisplayName `String` + - Id `String` + - InheritedPermission `String` + - Name `String` + - NumberOfChild `Int32?` + - NumberOfChildGroup `Int32?` + - NumberOfDescendant `Int32?` + - ParentDisplayNameChain `String[]` + - ParentId `String` + - ParentNameChain `String[]` + - Permission `String` + - TenantId `String` + - Type `String` + +### EntityInfoProperties [Api20180301Preview] + - DisplayName `String` + - InheritedPermission `String` + - NumberOfChild `Int32?` + - NumberOfChildGroup `Int32?` + - NumberOfDescendant `Int32?` + - ParentDisplayNameChain `String[]` + - ParentId `String` + - ParentNameChain `String[]` + - Permission `String` + - TenantId `String` + +### EntityListResult [Api20180301Preview] + - Count `Int32?` + - NextLink `String` + - Value `IEntityInfo[]` + +### EntityParentGroupInfo [Api20180301Preview] + - Id `String` + +### ErrorDetails [Api20180301Preview] + - Code `String` + - Detail `String` + - Message `String` + +### ErrorMessage [Api16] + - Message `String` + +### ErrorResponse [Api20160901Preview, Api20180301Preview] + - ErrorCode `String` + - ErrorDetail `String` + - ErrorMessage `String` + - HttpStatus `String` + +### ExportTemplateRequest [Api20180501] + - Option `String` + - Resource `String[]` + +### FeatureOperationsListResult [Api20151201] + - NextLink `String` + - Value `IFeatureResult[]` + +### FeatureProperties [Api20151201] + - State `String` + +### FeatureResult [Api20151201] + - Id `String` + - Name `String` + - State `String` + - Type `String` + +### GenericResource [Api20160901Preview, Api20180501] + - Id `String` + - IdentityPrincipalId `String` + - IdentityTenantId `String` + - IdentityType `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** + - IdentityUserAssignedIdentity `IIdentityUserAssignedIdentities ` + - Kind `String` + - Location `String` + - ManagedBy `String` + - Name `String` + - PlanName `String` + - PlanProduct `String` + - PlanPromotionCode `String` + - PlanPublisher `String` + - PlanVersion `String` + - Property `IGenericResourceProperties` + - SkuCapacity `Int32?` + - SkuFamily `String` + - SkuModel `String` + - SkuName `String` + - SkuSize `String` + - SkuTier `String` + - Tag `IResourceTags ` + - Type `String` + +### GetObjectsParameters \ [Api16] + - IncludeDirectoryObjectReference `Boolean?` + - ObjectId `String[]` + - Type `String[]` + +### GraphError [Api16] + - ErrorMessageValueMessage `String` + - OdataErrorCode `String` + +### GroupAddMemberParameters \ [Api16] + - Url `String` + +### GroupCreateParameters \ [Api16] + - DisplayName `String` + - MailEnabled `Boolean` + - MailNickname `String` + - SecurityEnabled `Boolean` + +### GroupGetMemberGroupsParameters \ [Api16] + - SecurityEnabledOnly `Boolean` + +### GroupGetMemberGroupsResult [Api16] + - Value `String[]` + +### GroupListResult [Api16] + - OdataNextLink `String` + - Value `IAdGroup[]` + +### HttpMessage [Api20180501] + - Content `IHttpMessageContent` + +### Identity [Api20160901Preview, Api20180501] + - PrincipalId `String` + - TenantId `String` + - Type `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** + - UserAssignedIdentity `IIdentityUserAssignedIdentities ` + +### Identity1 [Api20180501] + - PrincipalId `String` + - TenantId `String` + - Type `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** + +### InformationalUrl [Api16] + - Marketing `String` + - Privacy `String` + - Support `String` + - TermsOfService `String` + +### KeyCredential \ [Api16] + - CustomKeyIdentifier `String` + - EndDate `DateTime?` **{MinValue, MaxValue}** + - KeyId `String` + - StartDate `DateTime?` **{MinValue, MaxValue}** + - Type `String` + - Usage `String` + - Value `String` + +### KeyCredentialListResult [Api16] + - Value `IKeyCredential[]` + +### KeyCredentialsUpdateParameters [Api16] + - Value `IKeyCredential[]` + +### Location [Api20160601] + - DisplayName `String` + - Id `String` + - Latitude `String` + - Longitude `String` + - Name `String` + - SubscriptionId `String` + +### LocationListResult [Api20160601] + - Value `ILocation[]` + +### ManagementGroup [Api20180301Preview] + - Child `IManagementGroupChildInfo[]` + - DetailUpdatedBy `String` + - DetailUpdatedTime `DateTime?` **{MinValue, MaxValue}** + - DetailVersion `Single?` + - DisplayName `String` + - Id `String` + - Name `String` + - ParentDisplayName `String` + - ParentId `String` + - ParentName `String` + - Role `String[]` + - TenantId `String` + - Type `String` + +### ManagementGroupChildInfo [Api20180301Preview] + - Child `IManagementGroupChildInfo[]` + - DisplayName `String` + - Id `String` + - Name `String` + - Role `String[]` + - Type `String` + +### ManagementGroupDetails [Api20180301Preview] + - ParentDisplayName `String` + - ParentId `String` + - ParentName `String` + - UpdatedBy `String` + - UpdatedTime `DateTime?` **{MinValue, MaxValue}** + - Version `Single?` + +### ManagementGroupInfo [Api20180301Preview] + - DisplayName `String` + - Id `String` + - Name `String` + - TenantId `String` + - Type `String` + +### ManagementGroupInfoProperties [Api20180301Preview] + - DisplayName `String` + - TenantId `String` + +### ManagementGroupListResult [Api20180301Preview] + - NextLink `String` + - Value `IManagementGroupInfo[]` + +### ManagementGroupProperties [Api20180301Preview] + - Child `IManagementGroupChildInfo[]` + - DetailUpdatedBy `String` + - DetailUpdatedTime `DateTime?` **{MinValue, MaxValue}** + - DetailVersion `Single?` + - DisplayName `String` + - ParentDisplayName `String` + - ParentId `String` + - ParentName `String` + - Role `String[]` + - TenantId `String` + +### ManagementLockListResult [Api20160901] + - NextLink `String` + - Value `IManagementLockObject[]` + +### ManagementLockObject [Api20160901] + - Id `String` + - Level `LockLevel` **{CanNotDelete, NotSpecified, ReadOnly}** + - Name `String` + - Note `String` + - Owner `IManagementLockOwner[]` + - Type `String` + +### ManagementLockOwner [Api20160901] + - ApplicationId `String` + +### ManagementLockProperties [Api20160901] + - Level `LockLevel` **{CanNotDelete, NotSpecified, ReadOnly}** + - Note `String` + - Owner `IManagementLockOwner[]` + +### OAuth2Permission [Api16] + - AdminConsentDescription `String` + - AdminConsentDisplayName `String` + - Id `String` + - IsEnabled `Boolean?` + - Type `String` + - UserConsentDescription `String` + - UserConsentDisplayName `String` + - Value `String` + +### OAuth2PermissionGrant [Api16] + - ClientId `String` + - ConsentType `ConsentType?` **{AllPrincipals, Principal}** + - ExpiryTime `String` + - ObjectId `String` + - OdataType `String` + - PrincipalId `String` + - ResourceId `String` + - Scope `String` + - StartTime `String` + +### OAuth2PermissionGrantListResult [Api16] + - OdataNextLink `String` + - Value `IOAuth2PermissionGrant[]` + +### OdataError [Api16] + - Code `String` + - ErrorMessageValueMessage `String` + +### OnErrorDeployment [Api20180501] + - DeploymentName `String` + - Type `OnErrorDeploymentType?` **{LastSuccessful, SpecificDeployment}** + +### OnErrorDeploymentExtended [Api20180501] + - DeploymentName `String` + - ProvisioningState `String` + - Type `OnErrorDeploymentType?` **{LastSuccessful, SpecificDeployment}** + +### Operation [Api20151201, Api20180301Preview] + - DisplayDescription `String` + - DisplayOperation `String` + - DisplayProvider `String` + - DisplayResource `String` + - Name `String` + +### OperationDisplay [Api20151201] + - Operation `String` + - Provider `String` + - Resource `String` + +### OperationDisplayProperties [Api20180301Preview] + - Description `String` + - Operation `String` + - Provider `String` + - Resource `String` + +### OperationListResult [Api20151201, Api20180301Preview] + - NextLink `String` + - Value `IOperation[]` + +### OperationResults [Api20180301Preview] + - Id `String` + - Name `String` + - ProvisioningState `String` + - Type `String` + +### OperationResultsProperties [Api20180301Preview] + - ProvisioningState `String` + +### OptionalClaim [Api16] + - AdditionalProperty `IOptionalClaimAdditionalProperties` + - Essential `Boolean?` + - Name `String` + - Source `String` + +### OptionalClaims [Api16] + - AccessToken `IOptionalClaim[]` + - IdToken `IOptionalClaim[]` + - SamlToken `IOptionalClaim[]` + +### ParametersLink [Api20180501] + - ContentVersion `String` + - Uri `String` + +### ParentGroupInfo [Api20180301Preview] + - DisplayName `String` + - Id `String` + - Name `String` + +### PasswordCredential \ [Api16] + - CustomKeyIdentifier `Byte[]` + - EndDate `DateTime?` **{MinValue, MaxValue}** + - KeyId `String` + - StartDate `DateTime?` **{MinValue, MaxValue}** + - Value `String` + +### PasswordCredentialListResult [Api16] + - Value `IPasswordCredential[]` + +### PasswordCredentialsUpdateParameters [Api16] + - Value `IPasswordCredential[]` + +### PasswordProfile \ [Api16] + - ForceChangePasswordNextLogin `Boolean?` + - Password `String` + +### PatchManagementGroupRequest [Api20180301Preview] + - DisplayName `String` + - ParentId `String` + +### Permission [Api20150701, Api201801Preview] + - Action `String[]` + - DataAction `String[]` + - NotAction `String[]` + - NotDataAction `String[]` + +### PermissionGetResult [Api20150701, Api201801Preview] + - NextLink `String` + - Value `IPermission[]` + +### Plan [Api20160901Preview, Api20180501] + - Name `String` + - Product `String` + - PromotionCode `String` + - Publisher `String` + - Version `String` + +### PlanPatchable [Api20160901Preview] + - Name `String` + - Product `String` + - PromotionCode `String` + - Publisher `String` + - Version `String` + +### PolicyAssignment [Api20151101, Api20161201, Api20180501] + - Description `String` + - DisplayName `String` + - Id `String` + - IdentityPrincipalId `String` + - IdentityTenantId `String` + - IdentityType `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** + - Location `String` + - Metadata `IPolicyAssignmentPropertiesMetadata` + - Name `String` + - NotScope `String[]` + - Parameter `IPolicyAssignmentPropertiesParameters` + - PolicyDefinitionId `String` + - Scope `String` + - SkuName `String` + - SkuTier `String` + - Type `String` + +### PolicyAssignmentListResult [Api20151101, Api20161201, Api20180501] + - NextLink `String` + - Value `IPolicyAssignment[]` + +### PolicyAssignmentProperties [Api20151101, Api20161201, Api20180501] + - Description `String` + - DisplayName `String` + - Metadata `IPolicyAssignmentPropertiesMetadata` + - NotScope `String[]` + - Parameter `IPolicyAssignmentPropertiesParameters` + - PolicyDefinitionId `String` + - Scope `String` + +### PolicyDefinition [Api20161201, Api20180501] + - Description `String` + - DisplayName `String` + - Id `String` + - Metadata `IPolicyDefinitionPropertiesMetadata` + - Mode `PolicyMode?` **{All, Indexed, NotSpecified}** + - Name `String` + - Parameter `IPolicyDefinitionPropertiesParameters` + - PolicyRule `IPolicyDefinitionPropertiesPolicyRule` + - PolicyType `PolicyType?` **{BuiltIn, Custom, NotSpecified}** + - Property `IPolicyDefinitionProperties` + - Type `String` + +### PolicyDefinitionListResult [Api20161201, Api20180501] + - NextLink `String` + - Value `IPolicyDefinition[]` + +### PolicyDefinitionProperties [Api20161201] + - Description `String` + - DisplayName `String` + - Metadata `IPolicyDefinitionPropertiesMetadata` + - Mode `PolicyMode?` **{All, Indexed, NotSpecified}** + - Parameter `IPolicyDefinitionPropertiesParameters` + - PolicyRule `IPolicyDefinitionPropertiesPolicyRule` + - PolicyType `PolicyType?` **{BuiltIn, Custom, NotSpecified}** + +### PolicyDefinitionReference [Api20180501] + - Parameter `IPolicyDefinitionReferenceParameters` + - PolicyDefinitionId `String` + +### PolicySetDefinition [Api20180501] + - Description `String` + - DisplayName `String` + - Id `String` + - Metadata `IPolicySetDefinitionPropertiesMetadata` + - Name `String` + - Parameter `IPolicySetDefinitionPropertiesParameters` + - PolicyDefinition `IPolicyDefinitionReference[]` + - PolicyType `PolicyType?` **{BuiltIn, Custom, NotSpecified}** + - Type `String` + +### PolicySetDefinitionListResult [Api20180501] + - NextLink `String` + - Value `IPolicySetDefinition[]` + +### PolicySetDefinitionProperties [Api20180501] + - Description `String` + - DisplayName `String` + - Metadata `IPolicySetDefinitionPropertiesMetadata` + - Parameter `IPolicySetDefinitionPropertiesParameters` + - PolicyDefinition `IPolicyDefinitionReference[]` + - PolicyType `PolicyType?` **{BuiltIn, Custom, NotSpecified}** + +### PolicySku [Api20180501] + - Name `String` + - Tier `String` + +### PreAuthorizedApplication [Api16] + - AppId `String` + - Extension `IPreAuthorizedApplicationExtension[]` + - Permission `IPreAuthorizedApplicationPermission[]` + +### PreAuthorizedApplicationExtension [Api16] + - Condition `String[]` + +### PreAuthorizedApplicationPermission [Api16] + - AccessGrant `String[]` + - DirectAccessGrant `Boolean?` + +### Principal [Api20180701Preview] + - Id `String` + - Type `String` + +### Provider [Api20180501] + - Id `String` + - Namespace `String` + - RegistrationState `String` + - ResourceType `IProviderResourceType[]` + +### ProviderListResult [Api20180501] + - NextLink `String` + - Value `IProvider[]` + +### ProviderOperation [Api20150701, Api201801Preview] + - Description `String` + - DisplayName `String` + - IsDataAction `Boolean?` + - Name `String` + - Origin `String` + - Property `IProviderOperationProperties` + +### ProviderOperationsMetadata [Api20150701, Api201801Preview] + - DisplayName `String` + - Id `String` + - Name `String` + - Operation `IProviderOperation[]` + - ResourceType `IResourceType[]` + - Type `String` + +### ProviderOperationsMetadataListResult [Api20150701, Api201801Preview] + - NextLink `String` + - Value `IProviderOperationsMetadata[]` + +### ProviderResourceType [Api20180501] + - Alias `IAliasType[]` + - ApiVersion `String[]` + - Location `String[]` + - Property `IProviderResourceTypeProperties ` + - ResourceType `String` + +### RequiredResourceAccess \ [Api16] + - ResourceAccess `IResourceAccess[]` + - ResourceAppId `String` + +### Resource [Api20160901Preview] + - Id `String` + - Location `String` + - Name `String` + - Tag `IResourceTags ` + - Type `String` + +### ResourceAccess \ [Api16] + - Id `String` + - Type `String` + +### ResourceGroup [Api20180501] + - Id `String` + - Location `String` + - ManagedBy `String` + - Name `String` + - ProvisioningState `String` + - Tag `IResourceGroupTags ` + - Type `String` + +### ResourceGroupExportResult [Api20180501] + - ErrorCode `String` + - ErrorDetail `IResourceManagementErrorWithDetails[]` + - ErrorMessage `String` + - ErrorTarget `String` + - Template `IResourceGroupExportResultTemplate` + +### ResourceGroupListResult [Api20180501] + - NextLink `String` + - Value `IResourceGroup[]` + +### ResourceGroupPatchable [Api20180501] + - ManagedBy `String` + - Name `String` + - ProvisioningState `String` + - Tag `IResourceGroupPatchableTags ` + +### ResourceGroupProperties [Api20180501] + - ProvisioningState `String` + +### ResourceLink [Api20160901] + - Id `String` + - Name `String` + - Note `String` + - SourceId `String` + - TargetId `String` + - Type `IResourceLinkType` + +### ResourceLinkProperties [Api20160901] + - Note `String` + - SourceId `String` + - TargetId `String` + +### ResourceLinkResult [Api20160901] + - NextLink `String` + - Value `IResourceLink[]` + +### ResourceListResult [Api20180501] + - NextLink `String` + - Value `IGenericResource[]` + +### ResourceManagementErrorWithDetails [Api20180501] + - Code `String` + - Detail `IResourceManagementErrorWithDetails[]` + - Message `String` + - Target `String` + +### ResourceProviderOperationDefinition [Api20151101] + - DisplayDescription `String` + - DisplayOperation `String` + - DisplayProvider `String` + - DisplayPublisher `String` + - DisplayResource `String` + - Name `String` + +### ResourceProviderOperationDetailListResult [Api20151101] + - NextLink `String` + - Value `IResourceProviderOperationDefinition[]` + +### ResourceProviderOperationDisplayProperties [Api20151101] + - Description `String` + - Operation `String` + - Provider `String` + - Publisher `String` + - Resource `String` + +### ResourcesIdentity [Models] + - ApplianceDefinitionId `String` + - ApplianceDefinitionName `String` + - ApplianceId `String` + - ApplianceName `String` + - ApplicationDefinitionId `String` + - ApplicationDefinitionName `String` + - ApplicationId `String` + - ApplicationId1 `String` + - ApplicationName `String` + - ApplicationObjectId `String` + - DenyAssignmentId `String` + - DeploymentName `String` + - DomainName `String` + - FeatureName `String` + - GroupId `String` + - GroupObjectId `String` + - Id `String` + - LinkId `String` + - LockName `String` + - ManagementGroupId `String` + - MemberObjectId `String` + - ObjectId `String` + - OperationId `String` + - OwnerObjectId `String` + - ParentResourcePath `String` + - PolicyAssignmentId `String` + - PolicyAssignmentName `String` + - PolicyDefinitionName `String` + - PolicySetDefinitionName `String` + - ResourceGroupName `String` + - ResourceId `String` + - ResourceName `String` + - ResourceProviderNamespace `String` + - ResourceType `String` + - RoleAssignmentId `String` + - RoleAssignmentName `String` + - RoleDefinitionId `String` + - RoleId `String` + - Scope `String` + - SourceResourceGroupName `String` + - SubscriptionId `String` + - TagName `String` + - TagValue `String` + - TenantId `String` + - UpnOrObjectId `String` + +### ResourcesMoveInfo [Api20180501] + - Resource `String[]` + - TargetResourceGroup `String` + +### ResourceType [Api20150701, Api201801Preview] + - DisplayName `String` + - Name `String` + - Operation `IProviderOperation[]` + +### RoleAssignment [Api20150701, Api20171001Preview, Api20180901Preview] + - CanDelegate `Boolean?` + - Id `String` + - Name `String` + - PrincipalId `String` + - PrincipalType `PrincipalType?` **{Application, DirectoryObjectOrGroup, DirectoryRoleTemplate, Everyone, ForeignGroup, Group, Msi, ServicePrincipal, Unknown, User}** + - RoleDefinitionId `String` + - Scope `String` + - Type `String` + +### RoleAssignmentCreateParameters [Api20150701, Api20171001Preview, Api20180901Preview] + - CanDelegate `Boolean?` + - PrincipalId `String` + - PrincipalType `PrincipalType?` **{Application, DirectoryObjectOrGroup, DirectoryRoleTemplate, Everyone, ForeignGroup, Group, Msi, ServicePrincipal, Unknown, User}** + - RoleDefinitionId `String` + +### RoleAssignmentListResult [Api20150701, Api20180901Preview] + - NextLink `String` + - Value `IRoleAssignment[]` + +### RoleAssignmentProperties [Api20150701, Api20171001Preview, Api20180901Preview] + - CanDelegate `Boolean?` + - PrincipalId `String` + - PrincipalType `PrincipalType?` **{Application, DirectoryObjectOrGroup, DirectoryRoleTemplate, Everyone, ForeignGroup, Group, Msi, ServicePrincipal, Unknown, User}** + - RoleDefinitionId `String` + +### RoleAssignmentPropertiesWithScope [Api20150701, Api20171001Preview, Api20180901Preview] + - CanDelegate `Boolean?` + - PrincipalId `String` + - PrincipalType `PrincipalType?` **{Application, DirectoryObjectOrGroup, DirectoryRoleTemplate, Everyone, ForeignGroup, Group, Msi, ServicePrincipal, Unknown, User}** + - RoleDefinitionId `String` + - Scope `String` + +### RoleDefinition [Api20150701, Api201801Preview] + - AssignableScope `String[]` + - Description `String` + - Id `String` + - Name `String` + - Permission `IPermission[]` + - RoleName `String` + - RoleType `String` + - Type `String` + +### RoleDefinitionListResult [Api20150701, Api201801Preview] + - NextLink `String` + - Value `IRoleDefinition[]` + +### RoleDefinitionProperties [Api20150701, Api201801Preview] + - AssignableScope `String[]` + - Description `String` + - Permission `IPermission[]` + - RoleName `String` + - RoleType `String` + +### ServicePrincipal \ [Api16] + - AccountEnabled `Boolean?` + - AlternativeName `String[]` + - AppDisplayName `String` + - AppId `String` + - AppOwnerTenantId `String` + - AppRole `IAppRole[]` + - AppRoleAssignmentRequired `Boolean?` + - DeletionTimestamp `DateTime?` **{MinValue, MaxValue}** + - DisplayName `String` + - ErrorUrl `String` + - Homepage `String` + - KeyCredentials `IKeyCredential[]` + - LogoutUrl `String` + - Name `String[]` + - Oauth2Permission `IOAuth2Permission[]` + - ObjectId `String` + - ObjectType `String` + - PasswordCredentials `IPasswordCredential[]` + - PreferredTokenSigningKeyThumbprint `String` + - PublisherName `String` + - ReplyUrl `String[]` + - SamlMetadataUrl `String` + - Tag `String[]` + - Type `String` + +### ServicePrincipalBase [Api16] + - AccountEnabled `Boolean?` + - AppRoleAssignmentRequired `Boolean?` + - KeyCredentials `IKeyCredential[]` + - PasswordCredentials `IPasswordCredential[]` + - ServicePrincipalType `String` + - Tag `String[]` + +### ServicePrincipalCreateParameters [Api16] + - AccountEnabled `Boolean?` + - AppId `String` + - AppRoleAssignmentRequired `Boolean?` + - KeyCredentials `IKeyCredential[]` + - PasswordCredentials `IPasswordCredential[]` + - ServicePrincipalType `String` + - Tag `String[]` + +### ServicePrincipalListResult [Api16] + - OdataNextLink `String` + - Value `IServicePrincipal[]` + +### ServicePrincipalObjectResult [Api16] + - OdataMetadata `String` + - Value `String` + +### ServicePrincipalUpdateParameters [Api16] + - AccountEnabled `Boolean?` + - AppRoleAssignmentRequired `Boolean?` + - KeyCredentials `IKeyCredential[]` + - PasswordCredentials `IPasswordCredential[]` + - ServicePrincipalType `String` + - Tag `String[]` + +### SignInName \ [Api16] + - Type `String` + - Value `String` + +### Sku [Api20160901Preview, Api20180501] + - Capacity `Int32?` + - Family `String` + - Model `String` + - Name `String` + - Size `String` + - Tier `String` + +### Subscription [Api20160601] + - AuthorizationSource `String` + - DisplayName `String` + - Id `String` + - PolicyLocationPlacementId `String` + - PolicyQuotaId `String` + - PolicySpendingLimit `SpendingLimit?` **{CurrentPeriodOff, Off, On}** + - State `SubscriptionState?` **{Deleted, Disabled, Enabled, PastDue, Warned}** + - SubscriptionId `String` + +### SubscriptionPolicies [Api20160601] + - LocationPlacementId `String` + - QuotaId `String` + - SpendingLimit `SpendingLimit?` **{CurrentPeriodOff, Off, On}** + +### TagCount [Api20180501] + - Type `String` + - Value `Int32?` + +### TagDetails [Api20180501] + - CountType `String` + - CountValue `Int32?` + - Id `String` + - TagName `String` + - Value `ITagValue[]` + +### TagsListResult [Api20180501] + - NextLink `String` + - Value `ITagDetails[]` + +### TagValue [Api20180501] + - CountType `String` + - CountValue `Int32?` + - Id `String` + - TagValue1 `String` + +### TargetResource [Api20180501] + - Id `String` + - ResourceName `String` + - ResourceType `String` + +### TemplateLink [Api20180501] + - ContentVersion `String` + - Uri `String` + +### TenantBackfillStatusResult [Api20180301Preview] + - Status `Status?` **{Cancelled, Completed, Failed, NotStarted, NotStartedButGroupsExist, Started}** + - TenantId `String` + +### TenantIdDescription [Api20160601] + - Id `String` + - TenantId `String` + +### TenantListResult [Api20160601] + - NextLink `String` + - Value `ITenantIdDescription[]` + +### User \ [Api16] + - AccountEnabled `Boolean?` + - DeletionTimestamp `DateTime?` **{MinValue, MaxValue}** + - DisplayName `String` + - GivenName `String` + - ImmutableId `String` + - Mail `String` + - MailNickname `String` + - ObjectId `String` + - ObjectType `String` + - PrincipalName `String` + - SignInName `ISignInName[]` + - Surname `String` + - Type `UserType?` **{Guest, Member}** + - UsageLocation `String` + +### UserBase \ [Api16] + - GivenName `String` + - ImmutableId `String` + - Surname `String` + - UsageLocation `String` + - UserType `UserType?` **{Guest, Member}** + +### UserCreateParameters \ [Api16] + - AccountEnabled `Boolean` + - DisplayName `String` + - GivenName `String` + - ImmutableId `String` + - Mail `String` + - MailNickname `String` + - PasswordProfile `IPasswordProfile ` + - Surname `String` + - UsageLocation `String` + - UserPrincipalName `String` + - UserType `UserType?` **{Guest, Member}** + +### UserGetMemberGroupsParameters \ [Api16] + - SecurityEnabledOnly `Boolean` + +### UserGetMemberGroupsResult [Api16] + - Value `String[]` + +### UserListResult [Api16] + - OdataNextLink `String` + - Value `IUser[]` + +### UserUpdateParameters \ [Api16] + - AccountEnabled `Boolean?` + - DisplayName `String` + - GivenName `String` + - ImmutableId `String` + - MailNickname `String` + - PasswordProfile `IPasswordProfile ` + - Surname `String` + - UsageLocation `String` + - UserPrincipalName `String` + - UserType `UserType?` **{Guest, Member}** + diff --git a/src/Kusto/tools/Resources/resources/readme.md b/src/Kusto/tools/Resources/resources/readme.md new file mode 100644 index 000000000000..937f07f8fec2 --- /dev/null +++ b/src/Kusto/tools/Resources/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/tools/Resources/test/readme.md b/src/Kusto/tools/Resources/test/readme.md new file mode 100644 index 000000000000..7c752b4c8c43 --- /dev/null +++ b/src/Kusto/tools/Resources/test/readme.md @@ -0,0 +1,17 @@ +# Test +This directory contains the [Pester](https://www.powershellgallery.com/packages/Pester) tests to run for the module. We use Pester as it is the unofficial standard for PowerShell unit testing. Test stubs for custom cmdlets (created in `..\custom`) will be generated into this folder when `build-module.ps1` is ran. These test stubs will fail automatically, to indicate that tests should be written for custom cmdlets. + +## Info +- Modifiable: yes +- Generated: partial +- Committed: yes +- Packaged: no + +## Details +We allow three testing modes: *live*, *record*, and *playback*. These can be selected using the `-Live`, `-Record`, and `-Playback` switches respectively on the `test-module.ps1` script. This script will run through any `.Tests.ps1` scripts in the `test` folder. If you choose the *record* mode, it will create a `.Recording.json` file of the REST calls between the client and server. Then, when you choose *playback* mode, it will use the `.Recording.json` file to mock the communication between server and client. The *live* mode runs the same as the *record* mode; however, it doesn't create the `.Recording.json` file. + +## Purpose +Custom cmdlets generally encompass additional functionality not described in the REST specification, or combines functionality generated from the REST spec. To validate this functionality continues to operate as intended, creating tests that can be ran and re-ran against custom cmdlets is part of the framework. + +## Usage +To execute tests, run the `test-module.ps1`. To write tests, [this example](https://github.com/pester/Pester/blob/8b9cf4248315e44f1ac6673be149f7e0d7f10466/Examples/Planets/Get-Planet.Tests.ps1#L1) from the Pester repository is very useful for getting started. \ No newline at end of file From 3053b0b07a838a92a30e26057a5122e973826a94 Mon Sep 17 00:00:00 2001 From: Assaf Taubenfeld Date: Wed, 29 Jul 2020 15:58:42 +0300 Subject: [PATCH 02/13] change to 2020-06-14 --- .../Invoke-AzKustoDataConnectionValidation.ps1 | 14 +++++++------- src/Kusto/custom/New-AzKustoDataConnection.ps1 | 10 +++++----- src/Kusto/custom/New-AzKustoDatabase.ps1 | 4 ++-- src/Kusto/custom/Update-AzKustoDataConnection.ps1 | 10 +++++----- src/Kusto/custom/Update-AzKustoDatabase.ps1 | 6 +++--- .../docs/Add-AzKustoClusterLanguageExtension.md | 2 +- src/Kusto/docs/Add-AzKustoDatabasePrincipal.md | 4 ++-- .../Get-AzKustoAttachedDatabaseConfiguration.md | 2 +- src/Kusto/docs/Get-AzKustoCluster.md | 2 +- .../docs/Get-AzKustoClusterFollowerDatabase.md | 2 +- .../docs/Get-AzKustoClusterLanguageExtension.md | 2 +- .../docs/Get-AzKustoClusterPrincipalAssignment.md | 2 +- src/Kusto/docs/Get-AzKustoClusterSku.md | 4 ++-- src/Kusto/docs/Get-AzKustoDataConnection.md | 2 +- src/Kusto/docs/Get-AzKustoDatabase.md | 2 +- src/Kusto/docs/Get-AzKustoDatabasePrincipal.md | 2 +- .../docs/Get-AzKustoDatabasePrincipalAssignment.md | 2 +- .../docs/Invoke-AzKustoDataConnectionValidation.md | 2 +- .../New-AzKustoAttachedDatabaseConfiguration.md | 2 +- src/Kusto/docs/New-AzKustoCluster.md | 6 +++--- .../docs/New-AzKustoClusterPrincipalAssignment.md | 2 +- src/Kusto/docs/New-AzKustoDataConnection.md | 2 +- src/Kusto/docs/New-AzKustoDatabase.md | 2 +- .../docs/New-AzKustoDatabasePrincipalAssignment.md | 2 +- .../docs/Remove-AzKustoClusterLanguageExtension.md | 2 +- src/Kusto/docs/Remove-AzKustoDatabasePrincipal.md | 4 ++-- .../docs/Test-AzKustoClusterNameAvailability.md | 2 +- ...toClusterPrincipalAssignmentNameAvailability.md | 2 +- .../Test-AzKustoDataConnectionNameAvailability.md | 2 +- .../docs/Test-AzKustoDatabaseNameAvailability.md | 2 +- ...oDatabasePrincipalAssignmentNameAvailability.md | 2 +- src/Kusto/docs/Update-AzKustoCluster.md | 6 +++--- src/Kusto/docs/Update-AzKustoDataConnection.md | 2 +- src/Kusto/docs/Update-AzKustoDatabase.md | 2 +- src/Kusto/readme.md | 4 ++-- 35 files changed, 60 insertions(+), 60 deletions(-) diff --git a/src/Kusto/custom/Invoke-AzKustoDataConnectionValidation.ps1 b/src/Kusto/custom/Invoke-AzKustoDataConnectionValidation.ps1 index 313a97423358..a7c29dbce03a 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)] @@ -226,13 +226,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,7 +248,7 @@ 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') @@ -257,7 +257,7 @@ function Invoke-AzKustoDataConnectionValidation { $null = $PSBoundParameters.Remove('StorageAccountResourceId') } 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..7f340a41e92a 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)] @@ -208,7 +208,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,7 +224,7 @@ 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') @@ -233,7 +233,7 @@ function New-AzKustoDataConnection { $null = $PSBoundParameters.Remove('StorageAccountResourceId') } 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..281299491dc6 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)] @@ -241,7 +241,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,7 +257,7 @@ 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') @@ -266,7 +266,7 @@ function Update-AzKustoDataConnection { $null = $PSBoundParameters.Remove('StorageAccountResourceId') } 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..fcf3b38623e1 100644 --- a/src/Kusto/docs/Add-AzKustoClusterLanguageExtension.md +++ b/src/Kusto/docs/Add-AzKustoClusterLanguageExtension.md @@ -174,7 +174,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: diff --git a/src/Kusto/docs/Add-AzKustoDatabasePrincipal.md b/src/Kusto/docs/Add-AzKustoDatabasePrincipal.md index 21227940cf14..c66d3c96aa65 100644 --- a/src/Kusto/docs/Add-AzKustoDatabasePrincipal.md +++ b/src/Kusto/docs/Add-AzKustoDatabasePrincipal.md @@ -147,7 +147,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: @@ -201,7 +201,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal ## ALIASES diff --git a/src/Kusto/docs/Get-AzKustoAttachedDatabaseConfiguration.md b/src/Kusto/docs/Get-AzKustoAttachedDatabaseConfiguration.md index a9603db20aa8..e7cacd0eab86 100644 --- a/src/Kusto/docs/Get-AzKustoAttachedDatabaseConfiguration.md +++ b/src/Kusto/docs/Get-AzKustoAttachedDatabaseConfiguration.md @@ -166,7 +166,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration ## ALIASES diff --git a/src/Kusto/docs/Get-AzKustoCluster.md b/src/Kusto/docs/Get-AzKustoCluster.md index ecc2e578eca5..1068783206d9 100644 --- a/src/Kusto/docs/Get-AzKustoCluster.md +++ b/src/Kusto/docs/Get-AzKustoCluster.md @@ -155,7 +155,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster ## ALIASES diff --git a/src/Kusto/docs/Get-AzKustoClusterFollowerDatabase.md b/src/Kusto/docs/Get-AzKustoClusterFollowerDatabase.md index 004398714be7..fc09c7e71b5d 100644 --- a/src/Kusto/docs/Get-AzKustoClusterFollowerDatabase.md +++ b/src/Kusto/docs/Get-AzKustoClusterFollowerDatabase.md @@ -140,7 +140,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition ## ALIASES diff --git a/src/Kusto/docs/Get-AzKustoClusterLanguageExtension.md b/src/Kusto/docs/Get-AzKustoClusterLanguageExtension.md index 8bbd4d4faad0..716e1237ab05 100644 --- a/src/Kusto/docs/Get-AzKustoClusterLanguageExtension.md +++ b/src/Kusto/docs/Get-AzKustoClusterLanguageExtension.md @@ -141,7 +141,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension ## ALIASES diff --git a/src/Kusto/docs/Get-AzKustoClusterPrincipalAssignment.md b/src/Kusto/docs/Get-AzKustoClusterPrincipalAssignment.md index 42f3143211f2..fdd02bed36e2 100644 --- a/src/Kusto/docs/Get-AzKustoClusterPrincipalAssignment.md +++ b/src/Kusto/docs/Get-AzKustoClusterPrincipalAssignment.md @@ -166,7 +166,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment ## ALIASES diff --git a/src/Kusto/docs/Get-AzKustoClusterSku.md b/src/Kusto/docs/Get-AzKustoClusterSku.md index 0d8fc9f561ab..4beccd5fb4cd 100644 --- a/src/Kusto/docs/Get-AzKustoClusterSku.md +++ b/src/Kusto/docs/Get-AzKustoClusterSku.md @@ -161,9 +161,9 @@ 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 +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription ## ALIASES diff --git a/src/Kusto/docs/Get-AzKustoDataConnection.md b/src/Kusto/docs/Get-AzKustoDataConnection.md index 20312715a217..63dd95e65e56 100644 --- a/src/Kusto/docs/Get-AzKustoDataConnection.md +++ b/src/Kusto/docs/Get-AzKustoDataConnection.md @@ -181,7 +181,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection ## ALIASES diff --git a/src/Kusto/docs/Get-AzKustoDatabase.md b/src/Kusto/docs/Get-AzKustoDatabase.md index c3032f848f04..0ca958538789 100644 --- a/src/Kusto/docs/Get-AzKustoDatabase.md +++ b/src/Kusto/docs/Get-AzKustoDatabase.md @@ -166,7 +166,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase ## ALIASES diff --git a/src/Kusto/docs/Get-AzKustoDatabasePrincipal.md b/src/Kusto/docs/Get-AzKustoDatabasePrincipal.md index 0c55a58b3a32..0ceb9449ec13 100644 --- a/src/Kusto/docs/Get-AzKustoDatabasePrincipal.md +++ b/src/Kusto/docs/Get-AzKustoDatabasePrincipal.md @@ -157,7 +157,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal ## ALIASES diff --git a/src/Kusto/docs/Get-AzKustoDatabasePrincipalAssignment.md b/src/Kusto/docs/Get-AzKustoDatabasePrincipalAssignment.md index 6474962c1b63..8d4b708b85fe 100644 --- a/src/Kusto/docs/Get-AzKustoDatabasePrincipalAssignment.md +++ b/src/Kusto/docs/Get-AzKustoDatabasePrincipalAssignment.md @@ -185,7 +185,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment ## ALIASES diff --git a/src/Kusto/docs/Invoke-AzKustoDataConnectionValidation.md b/src/Kusto/docs/Invoke-AzKustoDataConnectionValidation.md index e564a177b24e..72ecda711de3 100644 --- a/src/Kusto/docs/Invoke-AzKustoDataConnectionValidation.md +++ b/src/Kusto/docs/Invoke-AzKustoDataConnectionValidation.md @@ -492,7 +492,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult ## ALIASES diff --git a/src/Kusto/docs/New-AzKustoAttachedDatabaseConfiguration.md b/src/Kusto/docs/New-AzKustoAttachedDatabaseConfiguration.md index e82ccb2022ff..93b195d244d6 100644 --- a/src/Kusto/docs/New-AzKustoAttachedDatabaseConfiguration.md +++ b/src/Kusto/docs/New-AzKustoAttachedDatabaseConfiguration.md @@ -255,7 +255,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration ## ALIASES diff --git a/src/Kusto/docs/New-AzKustoCluster.md b/src/Kusto/docs/New-AzKustoCluster.md index 5d25ac4a24a8..adfa828adde8 100644 --- a/src/Kusto/docs/New-AzKustoCluster.md +++ b/src/Kusto/docs/New-AzKustoCluster.md @@ -210,7 +210,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: @@ -436,7 +436,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: @@ -552,7 +552,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster ## ALIASES diff --git a/src/Kusto/docs/New-AzKustoClusterPrincipalAssignment.md b/src/Kusto/docs/New-AzKustoClusterPrincipalAssignment.md index 2e416a4b29be..923e6cd56e7f 100644 --- a/src/Kusto/docs/New-AzKustoClusterPrincipalAssignment.md +++ b/src/Kusto/docs/New-AzKustoClusterPrincipalAssignment.md @@ -255,7 +255,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment ## ALIASES diff --git a/src/Kusto/docs/New-AzKustoDataConnection.md b/src/Kusto/docs/New-AzKustoDataConnection.md index 9f83b755b93e..35b20a7dace7 100644 --- a/src/Kusto/docs/New-AzKustoDataConnection.md +++ b/src/Kusto/docs/New-AzKustoDataConnection.md @@ -445,7 +445,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection ## ALIASES diff --git a/src/Kusto/docs/New-AzKustoDatabase.md b/src/Kusto/docs/New-AzKustoDatabase.md index e76ce97ac153..298ce917f3fc 100644 --- a/src/Kusto/docs/New-AzKustoDatabase.md +++ b/src/Kusto/docs/New-AzKustoDatabase.md @@ -253,7 +253,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase ## ALIASES diff --git a/src/Kusto/docs/New-AzKustoDatabasePrincipalAssignment.md b/src/Kusto/docs/New-AzKustoDatabasePrincipalAssignment.md index 8f1f45b4a5a8..b8c5077ac678 100644 --- a/src/Kusto/docs/New-AzKustoDatabasePrincipalAssignment.md +++ b/src/Kusto/docs/New-AzKustoDatabasePrincipalAssignment.md @@ -271,7 +271,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment ## ALIASES diff --git a/src/Kusto/docs/Remove-AzKustoClusterLanguageExtension.md b/src/Kusto/docs/Remove-AzKustoClusterLanguageExtension.md index cde366a568ae..c38696b96254 100644 --- a/src/Kusto/docs/Remove-AzKustoClusterLanguageExtension.md +++ b/src/Kusto/docs/Remove-AzKustoClusterLanguageExtension.md @@ -174,7 +174,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: diff --git a/src/Kusto/docs/Remove-AzKustoDatabasePrincipal.md b/src/Kusto/docs/Remove-AzKustoDatabasePrincipal.md index 573e77eaf14d..46c7a4b607c5 100644 --- a/src/Kusto/docs/Remove-AzKustoDatabasePrincipal.md +++ b/src/Kusto/docs/Remove-AzKustoDatabasePrincipal.md @@ -146,7 +146,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: @@ -200,7 +200,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal ## ALIASES diff --git a/src/Kusto/docs/Test-AzKustoClusterNameAvailability.md b/src/Kusto/docs/Test-AzKustoClusterNameAvailability.md index e4ddb90dc3d8..80f225f4a4e9 100644 --- a/src/Kusto/docs/Test-AzKustoClusterNameAvailability.md +++ b/src/Kusto/docs/Test-AzKustoClusterNameAvailability.md @@ -193,7 +193,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult ## ALIASES diff --git a/src/Kusto/docs/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md b/src/Kusto/docs/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md index dea510141f18..f2404f783e12 100644 --- a/src/Kusto/docs/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md +++ b/src/Kusto/docs/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md @@ -210,7 +210,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult ## ALIASES diff --git a/src/Kusto/docs/Test-AzKustoDataConnectionNameAvailability.md b/src/Kusto/docs/Test-AzKustoDataConnectionNameAvailability.md index 54cb0dad9775..c6470ffd0165 100644 --- a/src/Kusto/docs/Test-AzKustoDataConnectionNameAvailability.md +++ b/src/Kusto/docs/Test-AzKustoDataConnectionNameAvailability.md @@ -226,7 +226,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult ## ALIASES diff --git a/src/Kusto/docs/Test-AzKustoDatabaseNameAvailability.md b/src/Kusto/docs/Test-AzKustoDatabaseNameAvailability.md index 6476d5a440f9..4b57e3912e8d 100644 --- a/src/Kusto/docs/Test-AzKustoDatabaseNameAvailability.md +++ b/src/Kusto/docs/Test-AzKustoDatabaseNameAvailability.md @@ -210,7 +210,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult ## ALIASES diff --git a/src/Kusto/docs/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md b/src/Kusto/docs/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md index b955fdd56716..6cc2c5b1fe2c 100644 --- a/src/Kusto/docs/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md +++ b/src/Kusto/docs/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md @@ -226,7 +226,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult ## ALIASES diff --git a/src/Kusto/docs/Update-AzKustoCluster.md b/src/Kusto/docs/Update-AzKustoCluster.md index 47ea31c61747..61cb0567a467 100644 --- a/src/Kusto/docs/Update-AzKustoCluster.md +++ b/src/Kusto/docs/Update-AzKustoCluster.md @@ -253,7 +253,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: @@ -479,7 +479,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: @@ -581,7 +581,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster ## ALIASES diff --git a/src/Kusto/docs/Update-AzKustoDataConnection.md b/src/Kusto/docs/Update-AzKustoDataConnection.md index e18bdef4cbab..22f3b7a77422 100644 --- a/src/Kusto/docs/Update-AzKustoDataConnection.md +++ b/src/Kusto/docs/Update-AzKustoDataConnection.md @@ -525,7 +525,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection ## ALIASES diff --git a/src/Kusto/docs/Update-AzKustoDatabase.md b/src/Kusto/docs/Update-AzKustoDatabase.md index 41a1060fc6c3..a037271d53fe 100644 --- a/src/Kusto/docs/Update-AzKustoDatabase.md +++ b/src/Kusto/docs/Update-AzKustoDatabase.md @@ -321,7 +321,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase ## ALIASES diff --git a/src/Kusto/readme.md b/src/Kusto/readme.md index c067c157340f..2b8a77800091 100644 --- a/src/Kusto/readme.md +++ b/src/Kusto/readme.md @@ -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'); ``` From f64cf6f3412bd51161aa9edbc6feb4a18559c252 Mon Sep 17 00:00:00 2001 From: Assaf Taubenfeld Date: Wed, 29 Jul 2020 16:05:42 +0300 Subject: [PATCH 03/13] first build --- src/Kusto/Az.Kusto.psd1 | 24 ++++++ .../Add-AzKustoClusterLanguageExtension.md | 23 ++---- .../docs/Add-AzKustoDatabasePrincipal.md | 21 ++--- src/Kusto/docs/Az.Kusto.md | 2 +- ...et-AzKustoAttachedDatabaseConfiguration.md | 16 ++-- src/Kusto/docs/Get-AzKustoCluster.md | 15 ++-- .../Get-AzKustoClusterFollowerDatabase.md | 10 +-- .../Get-AzKustoClusterLanguageExtension.md | 10 +-- .../Get-AzKustoClusterPrincipalAssignment.md | 16 ++-- src/Kusto/docs/Get-AzKustoClusterSku.md | 8 +- src/Kusto/docs/Get-AzKustoDataConnection.md | 17 ++-- src/Kusto/docs/Get-AzKustoDatabase.md | 16 ++-- .../docs/Get-AzKustoDatabasePrincipal.md | 11 +-- .../Get-AzKustoDatabasePrincipalAssignment.md | 17 ++-- .../Invoke-AzKustoDataConnectionValidation.md | 31 ++----- ...ke-AzKustoDetachClusterFollowerDatabase.md | 22 ++--- ...ke-AzKustoDiagnoseClusterVirtualNetwork.md | 19 ++--- ...ew-AzKustoAttachedDatabaseConfiguration.md | 17 +--- src/Kusto/docs/New-AzKustoCluster.md | 69 +++++++--------- .../New-AzKustoClusterPrincipalAssignment.md | 17 +--- src/Kusto/docs/New-AzKustoDataConnection.md | 26 +----- src/Kusto/docs/New-AzKustoDatabase.md | 17 +--- .../New-AzKustoDatabasePrincipalAssignment.md | 18 +---- ...ve-AzKustoAttachedDatabaseConfiguration.md | 21 ++--- src/Kusto/docs/Remove-AzKustoCluster.md | 20 ++--- .../Remove-AzKustoClusterLanguageExtension.md | 23 ++---- ...emove-AzKustoClusterPrincipalAssignment.md | 21 ++--- .../docs/Remove-AzKustoDataConnection.md | 22 ++--- src/Kusto/docs/Remove-AzKustoDatabase.md | 21 ++--- .../docs/Remove-AzKustoDatabasePrincipal.md | 21 ++--- ...move-AzKustoDatabasePrincipalAssignment.md | 22 ++--- src/Kusto/docs/Start-AzKustoCluster.md | 20 ++--- src/Kusto/docs/Stop-AzKustoCluster.md | 20 ++--- .../Test-AzKustoClusterNameAvailability.md | 18 ++--- ...sterPrincipalAssignmentNameAvailability.md | 19 ++--- ...t-AzKustoDataConnectionNameAvailability.md | 20 ++--- .../Test-AzKustoDatabaseNameAvailability.md | 19 ++--- ...basePrincipalAssignmentNameAvailability.md | 20 ++--- src/Kusto/docs/Update-AzKustoCluster.md | 81 ++++++++----------- .../docs/Update-AzKustoDataConnection.md | 33 ++------ src/Kusto/docs/Update-AzKustoDatabase.md | 24 ++---- src/Kusto/examples/readme.md | 11 --- .../Add-AzKustoDatabasePrincipal.Tests.ps1 | 22 +++++ 43 files changed, 299 insertions(+), 621 deletions(-) create mode 100644 src/Kusto/Az.Kusto.psd1 delete mode 100644 src/Kusto/examples/readme.md create mode 100644 src/Kusto/test/Add-AzKustoDatabasePrincipal.Tests.ps1 diff --git a/src/Kusto/Az.Kusto.psd1 b/src/Kusto/Az.Kusto.psd1 new file mode 100644 index 000000000000..9387805f3560 --- /dev/null +++ b/src/Kusto/Az.Kusto.psd1 @@ -0,0 +1,24 @@ +@{ + GUID = '8bac1098-6d26-40ba-aad1-a2442a0d0a4a' + 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/docs/Add-AzKustoClusterLanguageExtension.md b/src/Kusto/docs/Add-AzKustoClusterLanguageExtension.md index fcf3b38623e1..3e00944145b9 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 @@ -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,16 @@ 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 +239,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 c66d3c96aa65..9810f3444899 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 @@ -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 @@ -203,14 +194,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal -## 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. @@ -221,7 +214,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..35c382cbfcfd 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: 8bac1098-6d26-40ba-aad1-a2442a0d0a4a 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 e7cacd0eab86..57c511580db7 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 @@ -168,14 +162,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration -## 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/Get-AzKustoCluster.md b/src/Kusto/docs/Get-AzKustoCluster.md index 1068783206d9..72aa037ed7bf 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 @@ -157,14 +152,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster -## 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/Get-AzKustoClusterFollowerDatabase.md b/src/Kusto/docs/Get-AzKustoClusterFollowerDatabase.md index fc09c7e71b5d..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 @@ -142,9 +136,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition -## ALIASES - ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/Get-AzKustoClusterLanguageExtension.md b/src/Kusto/docs/Get-AzKustoClusterLanguageExtension.md index 716e1237ab05..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 @@ -143,9 +137,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension -## ALIASES - ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/Get-AzKustoClusterPrincipalAssignment.md b/src/Kusto/docs/Get-AzKustoClusterPrincipalAssignment.md index fdd02bed36e2..46d4faba5d6a 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 @@ -168,14 +162,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment -## 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/Get-AzKustoClusterSku.md b/src/Kusto/docs/Get-AzKustoClusterSku.md index 4beccd5fb4cd..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 @@ -165,9 +161,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription -## ALIASES - ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/Get-AzKustoDataConnection.md b/src/Kusto/docs/Get-AzKustoDataConnection.md index 63dd95e65e56..0b3ffe29dda0 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 @@ -183,14 +176,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection -## 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/Get-AzKustoDatabase.md b/src/Kusto/docs/Get-AzKustoDatabase.md index 0ca958538789..6bad73b0202e 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 @@ -168,14 +162,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase -## 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/Get-AzKustoDatabasePrincipal.md b/src/Kusto/docs/Get-AzKustoDatabasePrincipal.md index 0ceb9449ec13..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 @@ -159,9 +152,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal -## ALIASES - ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/Get-AzKustoDatabasePrincipalAssignment.md b/src/Kusto/docs/Get-AzKustoDatabasePrincipalAssignment.md index 8d4b708b85fe..060f30fa2170 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 @@ -187,14 +180,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment -## 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-AzKustoDataConnectionValidation.md b/src/Kusto/docs/Invoke-AzKustoDataConnectionValidation.md index 72ecda711de3..126d306f6056 100644 --- a/src/Kusto/docs/Invoke-AzKustoDataConnectionValidation.md +++ b/src/Kusto/docs/Invoke-AzKustoDataConnectionValidation.md @@ -154,7 +154,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Compression @@ -170,7 +169,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ConsumerGroup @@ -186,7 +184,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -202,7 +199,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DataConnectionName @@ -218,7 +214,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DataFormat @@ -235,7 +230,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -251,7 +245,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -EventHubResourceId @@ -267,7 +260,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -EventSystemProperty @@ -283,7 +275,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -300,7 +291,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -IotHubResourceId @@ -316,7 +306,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Kind @@ -332,7 +321,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -348,7 +336,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -MappingRuleName @@ -365,7 +352,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -381,7 +367,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SharedAccessPolicyName @@ -397,7 +382,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -StorageAccountResourceId @@ -413,7 +397,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -430,7 +413,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -TableName @@ -447,7 +429,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -463,7 +444,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -480,7 +460,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -494,14 +473,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult -## 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-AzKustoDetachClusterFollowerDatabase.md b/src/Kusto/docs/Invoke-AzKustoDetachClusterFollowerDatabase.md index 823987f395ef..3c42ad2d04b6 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,16 @@ 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..f1ef2567264a 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,16 @@ 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 93b195d244d6..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 @@ -257,9 +244,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration -## ALIASES - ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/New-AzKustoCluster.md b/src/Kusto/docs/New-AzKustoCluster.md index adfa828adde8..f5edc184a9ed 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 @@ -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 @@ -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 @@ -554,17 +539,19 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster -## 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. -#### 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 923e6cd56e7f..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 @@ -257,9 +244,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment -## ALIASES - ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/New-AzKustoDataConnection.md b/src/Kusto/docs/New-AzKustoDataConnection.md index 35b20a7dace7..6e9bfa08a2cd 100644 --- a/src/Kusto/docs/New-AzKustoDataConnection.md +++ b/src/Kusto/docs/New-AzKustoDataConnection.md @@ -94,7 +94,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterName @@ -110,7 +109,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Compression @@ -126,7 +124,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ConsumerGroup @@ -142,7 +139,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -158,7 +154,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DataFormat @@ -175,7 +170,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -191,7 +185,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -EventHubResourceId @@ -207,7 +200,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -EventSystemProperty @@ -223,7 +215,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -IotHubResourceId @@ -239,7 +230,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Kind @@ -255,7 +245,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -271,7 +260,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -MappingRuleName @@ -288,7 +276,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -304,7 +291,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -320,7 +306,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -336,7 +321,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SharedAccessPolicyName @@ -352,7 +336,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -StorageAccountResourceId @@ -368,7 +351,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -385,7 +367,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -TableName @@ -402,7 +383,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -418,7 +398,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -435,7 +414,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -447,9 +425,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection -## ALIASES - ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/New-AzKustoDatabase.md b/src/Kusto/docs/New-AzKustoDatabase.md index 298ce917f3fc..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 @@ -255,9 +242,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase -## ALIASES - ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/New-AzKustoDatabasePrincipalAssignment.md b/src/Kusto/docs/New-AzKustoDatabasePrincipalAssignment.md index b8c5077ac678..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 @@ -273,9 +259,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment -## ALIASES - ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/Remove-AzKustoAttachedDatabaseConfiguration.md b/src/Kusto/docs/Remove-AzKustoAttachedDatabaseConfiguration.md index 7ad2d1eba16e..ea8d29749292 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,16 @@ 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..c155ff4a61b0 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,16 @@ 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 c38696b96254..366a9f0baee7 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 @@ -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,16 @@ 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 +239,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..4e24bf7c0b8f 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,16 @@ 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..39223f49e943 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,16 @@ 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..56d3b87840ec 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,16 @@ 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 46c7a4b607c5..35674d0e2b4f 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 @@ -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 @@ -202,14 +193,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal -## 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. @@ -220,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/Remove-AzKustoDatabasePrincipalAssignment.md b/src/Kusto/docs/Remove-AzKustoDatabasePrincipalAssignment.md index 658fa65665c4..378f71954aa5 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,16 @@ 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..dff980915fca 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,16 @@ 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..fa9d95320436 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,16 @@ 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 80f225f4a4e9..069516e05d67 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 @@ -195,14 +187,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult -## 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-AzKustoClusterPrincipalAssignmentNameAvailability.md b/src/Kusto/docs/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md index f2404f783e12..26d23cbae256 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 @@ -212,14 +203,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult -## 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-AzKustoDataConnectionNameAvailability.md b/src/Kusto/docs/Test-AzKustoDataConnectionNameAvailability.md index c6470ffd0165..82e4b1ad0912 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 @@ -228,14 +218,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult -## 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-AzKustoDatabaseNameAvailability.md b/src/Kusto/docs/Test-AzKustoDatabaseNameAvailability.md index 4b57e3912e8d..9b97bdfb2e6b 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 @@ -212,14 +203,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult -## 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-AzKustoDatabasePrincipalAssignmentNameAvailability.md b/src/Kusto/docs/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md index 6cc2c5b1fe2c..d9d5ff1b076e 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 @@ -228,14 +218,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult -## 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/Update-AzKustoCluster.md b/src/Kusto/docs/Update-AzKustoCluster.md index 61cb0567a467..e96e02c14c39 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 @@ -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 @@ -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 @@ -583,14 +568,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster -## 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. @@ -601,10 +588,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 22f3b7a77422..173f56e7c69a 100644 --- a/src/Kusto/docs/Update-AzKustoDataConnection.md +++ b/src/Kusto/docs/Update-AzKustoDataConnection.md @@ -155,7 +155,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterName @@ -171,7 +170,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Compression @@ -187,7 +185,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ConsumerGroup @@ -203,7 +200,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -219,7 +215,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DataFormat @@ -236,7 +231,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -252,7 +246,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -EventHubResourceId @@ -268,7 +261,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -EventSystemProperty @@ -284,7 +276,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -301,7 +292,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -IotHubResourceId @@ -317,7 +307,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Kind @@ -333,7 +322,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -349,7 +337,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -MappingRuleName @@ -366,7 +353,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -382,7 +368,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -398,7 +383,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -414,7 +398,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SharedAccessPolicyName @@ -430,7 +413,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -StorageAccountResourceId @@ -446,7 +428,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -463,7 +444,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -TableName @@ -480,7 +460,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -496,7 +475,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -513,7 +491,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -527,14 +504,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection -## 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/Update-AzKustoDatabase.md b/src/Kusto/docs/Update-AzKustoDatabase.md index a037271d53fe..59d528247554 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 @@ -323,14 +309,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase -## 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/examples/readme.md b/src/Kusto/examples/readme.md deleted file mode 100644 index ac871d71fc72..000000000000 --- a/src/Kusto/examples/readme.md +++ /dev/null @@ -1,11 +0,0 @@ -# Examples -This directory contains examples from the exported cmdlets of the module. When `build-module.ps1` is ran, example stub files will be generated here. If your module support Azure Profiles, the example stubs will be in individual profile folders. These example stubs should be updated to show how the cmdlet is used. The examples are imported into the documentation when `generate-help.ps1` is ran. - -## Info -- Modifiable: yes -- Generated: partial -- Committed: yes -- Packaged: no - -## Purpose -This separates the example documentation details from the generated documentation information provided directly from the generated cmdlets. Since the cmdlets don't have examples from the REST spec, this provides a means to add examples easily. The example stubs provide the markdown format that is required. The 3 core elements are: the name of the example, the code information of the example, and the description of the example. That information, if the markdown format is followed, will be available to documentation generation and be part of the documents in the `..\docs` folder. \ No newline at end of file diff --git a/src/Kusto/test/Add-AzKustoDatabasePrincipal.Tests.ps1 b/src/Kusto/test/Add-AzKustoDatabasePrincipal.Tests.ps1 new file mode 100644 index 000000000000..fcb963749e3b --- /dev/null +++ b/src/Kusto/test/Add-AzKustoDatabasePrincipal.Tests.ps1 @@ -0,0 +1,22 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Add-AzKustoDatabasePrincipal.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Add-AzKustoDatabasePrincipal' { + It 'AddExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'AddViaIdentityExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} From 6e11d4be4fe217b37d93b9b1048642217a2f2844 Mon Sep 17 00:00:00 2001 From: Assaf Taubenfeld Date: Wed, 29 Jul 2020 16:10:15 +0300 Subject: [PATCH 04/13] comment out cleanUpEnv in utils --- src/Kusto/test/utils.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kusto/test/utils.ps1 b/src/Kusto/test/utils.ps1 index 8d366691b4e0..8071227ca9ae 100644 --- a/src/Kusto/test/utils.ps1 +++ b/src/Kusto/test/utils.ps1 @@ -141,5 +141,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 -Force } From 788f86f548201860b2ad9a3e2bd4ab0d2bbf8d97 Mon Sep 17 00:00:00 2001 From: Assaf Taubenfeld Date: Thu, 30 Jul 2020 10:58:56 +0300 Subject: [PATCH 05/13] return comments for data-connection creation --- .../event-grid/parameters.json | 4 +-- .../event-hub/parameters.json | 4 +-- .../storage-account/parameters.json | 2 +- src/Kusto/test/utils.ps1 | 27 +++++++------------ 4 files changed, 15 insertions(+), 22 deletions(-) diff --git a/src/Kusto/test/deployment-templates/event-grid/parameters.json b/src/Kusto/test/deployment-templates/event-grid/parameters.json index 38190950d8a1..f172e6df0896 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": "eventhubnsgridql4uyh" }, "eventhubg_name": { - "value": "eventgrid25n9il" + "value": "eventgridql4uyh" } } } diff --git a/src/Kusto/test/deployment-templates/event-hub/parameters.json b/src/Kusto/test/deployment-templates/event-hub/parameters.json index b6e97a7755a2..667b0be4ee4f 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": "eventhubns6kcd7e" }, "eventhub_name": { - "value": "eventhubpb8oay" + "value": "eventhub6kcd7e" } } } diff --git a/src/Kusto/test/deployment-templates/storage-account/parameters.json b/src/Kusto/test/deployment-templates/storage-account/parameters.json index b408bd26096c..399e01ec034d 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": "storage6kcd7e" } } } diff --git a/src/Kusto/test/utils.ps1 b/src/Kusto/test/utils.ps1 index 8071227ca9ae..06452d1801c6 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+ "h" + #$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 $location -Kind "EventGrid" -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -DataFormat $env.dataFormat -ConsumerGroup '$Default' -TableName $env.tableName -MappingRuleName $env.tableMappingName - # - # $dataConnectionName = $env.dataConnectionName + "h" + # New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -location $env.location -Kind "EventGrid" -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -ConsumerGroup '$Default' + + # $dataConnectionName = $env.dataConnectionName + "I" # $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 + # New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -location $env.location -Kind "IotHub" -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $env.iothubSharedAccessPolicyName -DataFormat $env.dataFormat -ConsumerGroup '$Default' -TableName $env.tableName -MappingRuleName $env.tableMappingName # 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 } From 419844b696be44b139db0a197fe93b8131dc5227 Mon Sep 17 00:00:00 2001 From: Assaf Taubenfeld Date: Sun, 2 Aug 2020 10:22:09 +0300 Subject: [PATCH 06/13] run tests with record mode --- ...stoClusterLanguageExtension.Recording.json | 1083 +++--- ...tachedDatabaseConfiguration.Recording.json | 40 +- .../test/Get-AzKustoCluster.Recording.json | 44 +- ...ustoClusterFollowerDatabase.Recording.json | 20 +- ...stoClusterLanguageExtension.Recording.json | 18 +- ...oClusterPrincipalAssignment.Recording.json | 40 +- .../test/Get-AzKustoClusterSku.Recording.json | 42 +- .../Get-AzKustoDataConnection.Recording.json | 50 +- .../test/Get-AzKustoDatabase.Recording.json | 40 +- ...et-AzKustoDatabasePrincipal.Recording.json | 22 +- ...DatabasePrincipalAssignment.Recording.json | 42 +- ...stoDataConnectionValidation.Recording.json | 682 +++- ...tachClusterFollowerDatabase.Recording.json | 548 +-- ...agnoseClusterVirtualNetwork.Recording.json | 552 +-- ...tachedDatabaseConfiguration.Recording.json | 258 +- .../test/New-AzKustoCluster.Recording.json | 1384 ++++---- ...oClusterPrincipalAssignment.Recording.json | 128 +- .../New-AzKustoDataConnection.Recording.json | 605 +--- .../test/New-AzKustoDatabase.Recording.json | 256 +- ...DatabasePrincipalAssignment.Recording.json | 128 +- ...tachedDatabaseConfiguration.Recording.json | 260 +- .../test/Remove-AzKustoCluster.Recording.json | 2115 +++++------- ...stoClusterLanguageExtension.Recording.json | 295 +- ...oClusterPrincipalAssignment.Recording.json | 132 +- ...emove-AzKustoDataConnection.Recording.json | 179 +- .../Remove-AzKustoDatabase.Recording.json | 132 +- ...ve-AzKustoDatabasePrincipal.Recording.json | 64 +- ...DatabasePrincipalAssignment.Recording.json | 132 +- .../test/Start-AzKustoCluster.Recording.json | 2977 ++++++++--------- .../test/Stop-AzKustoCluster.Recording.json | 2235 ++++++------- ...ustoClusterNameAvailability.Recording.json | 18 +- ...lAssignmentNameAvailability.Recording.json | 52 +- ...aConnectionNameAvailability.Recording.json | 58 +- ...stoDatabaseNameAvailability.Recording.json | 58 +- ...lAssignmentNameAvailability.Recording.json | 178 +- .../test/Update-AzKustoCluster.Recording.json | 724 ++-- ...pdate-AzKustoDataConnection.Recording.json | 771 +---- .../Update-AzKustoDatabase.Recording.json | 368 +- .../event-grid/parameters.json | 4 +- .../event-hub/parameters.json | 4 +- .../storage-account/parameters.json | 2 +- src/Kusto/test/env.json | 74 +- 42 files changed, 7488 insertions(+), 9326 deletions(-) diff --git a/src/Kusto/test/Add-AzKustoClusterLanguageExtension.Recording.json b/src/Kusto/test/Add-AzKustoClusterLanguageExtension.Recording.json index 4f7a3ae778e2..8e8a58ef9208 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "214c8520-1f1d-4fb7-8662-191780e0ec4e" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "ac574707-e600-4afc-a638-5874eab30093" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T084751Z:ac574707-e600-4afc-a638-5874eab30093" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:11:55 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:47:51 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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "283" ], + "x-ms-request-id": [ "3581d62e-b98f-41b7-9642-9f3492e30d9a" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "ffd89fc6-549f-4db8-9a33-b76053e0176d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T084823Z:ffd89fc6-549f-4db8-9a33-b76053e0176d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:12:25 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:48:22 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "282" ], + "x-ms-request-id": [ "ad4ad7e7-995a-46c8-9683-ab2e5bc21764" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "3dee628b-8cc1-4c3d-af9a-1fa6278b1771" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T084857Z:3dee628b-8cc1-4c3d-af9a-1fa6278b1771" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:12:55 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:48:56 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "281" ], + "x-ms-request-id": [ "4cf41998-4f14-4a58-a7fd-dad235defe45" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "9dad19c3-6790-4209-9c8e-9185b9aa8647" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T084930Z:9dad19c3-6790-4209-9c8e-9185b9aa8647" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:13:26 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:49:29 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "290" ], + "x-ms-request-id": [ "daccc0aa-a8b6-4fe3-bdc8-26a185379d50" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "36887bd9-5c03-4232-8f7b-602fcdb6d5a1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085002Z:36887bd9-5c03-4232-8f7b-602fcdb6d5a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:13:56 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:50: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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120", "121" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "289" ], + "x-ms-request-id": [ "0ff65a57-2b14-4517-a3eb-e1025a444507" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "a1f0575e-b0f7-48da-9a72-977443289f50" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085036Z:a1f0575e-b0f7-48da-9a72-977443289f50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:14:27 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:50:35 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120", "121", "122" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "c88f4149-50fa-4c65-baa1-092308c7e23c" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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-correlation-request-id": [ "cc432ed3-e481-46b7-a705-ef8531a0c37d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085109Z:cc432ed3-e481-46b7-a705-ef8531a0c37d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:14:57 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:51:09 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120", "121", "122", "123" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "287" ], + "x-ms-request-id": [ "bf0287dc-e65c-4ccf-833d-d751ea0bd0a3" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "17a5162a-3e45-47db-a330-e5cc7247b1c6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085140Z:17a5162a-3e45-47db-a330-e5cc7247b1c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:15:27 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:51:39 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "286" ], + "x-ms-request-id": [ "d6a0877c-8afc-4bbe-8dea-3c81e2c5cbc6" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "15934263-ddec-4021-852b-1ddda4bcf09e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085210Z:15934263-ddec-4021-852b-1ddda4bcf09e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:15:57 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:52:10 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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-correlation-request-id": [ "4900d0f1-e98c-4128-b93e-d5ba571e2b6b" ], + "x-ms-request-id": [ "13ef9801-80d3-4fdf-8380-924250995276" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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-routing-request-id": [ "NORTHEUROPE:20200730T085243Z:4900d0f1-e98c-4128-b93e-d5ba571e2b6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:16:28 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:52:43 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "284" ], + "x-ms-request-id": [ "6282c6fb-c474-49fb-9b1b-5ea2296bfe14" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "2a28b3be-e6d5-40dc-8ea6-4da70766c3e3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085314Z:2a28b3be-e6d5-40dc-8ea6-4da70766c3e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:16:58 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:53:13 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "283" ], + "x-ms-request-id": [ "fa3ba1a8-9299-40bf-bf55-cf6ea1cce4a4" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "2d367c5d-9702-4102-bb8c-970c4ec0b8c9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085346Z:2d367c5d-9702-4102-bb8c-970c4ec0b8c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:17:28 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:53: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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "282" ], + "x-ms-request-id": [ "a28d0fdf-d888-458c-b365-181ed1110d60" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "a232445c-db7e-48d2-9d34-2938b0f95b91" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085422Z:a232445c-db7e-48d2-9d34-2938b0f95b91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:17:59 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:54:21 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "281" ], + "x-ms-request-id": [ "fd256a6d-842a-4506-9a27-c572c32b16ac" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "34d5ca62-af4e-4028-bbf8-26b70edbdb10" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085457Z:34d5ca62-af4e-4028-bbf8-26b70edbdb10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:18:29 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:54:57 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "289" ], + "x-ms-request-id": [ "8c7720b0-070f-4633-b707-c6d2d3e0b79d" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "adf14bb0-6974-4ffa-8eb1-a1082370c199" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085527Z:adf14bb0-6974-4ffa-8eb1-a1082370c199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:19:00 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:55:26 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "288" ], + "x-ms-request-id": [ "1ec9e301-9f1e-4858-80e5-8c2f1a757ab4" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "99b000f4-985f-40f4-9716-ccf87a6cbb91" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085557Z:99b000f4-985f-40f4-9716-ccf87a6cbb91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:19:30 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:55:57 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "287" ], + "x-ms-request-id": [ "cbada3c8-0b45-4749-9eb7-18d608c853c8" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "ab05ea24-8d95-450b-9642-78987e0bd165" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085628Z:ab05ea24-8d95-450b-9642-78987e0bd165" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:20:00 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:56:27 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "286" ], + "x-ms-request-id": [ "6234ec65-43b0-4c9b-82a3-1db9e6ea4918" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "6beacbfc-0257-4225-b318-848bec45ce51" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085658Z:6beacbfc-0257-4225-b318-848bec45ce51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:20:31 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:56:57 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "285" ], + "x-ms-request-id": [ "f7795266-f1e4-442c-aaf4-9e7dfb23e677" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "eaddd231-c882-486f-90e9-b13eb0569e4e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085728Z:eaddd231-c882-486f-90e9-b13eb0569e4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:21:01 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:57:28 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "284" ], + "x-ms-request-id": [ "abdd3abf-2eb2-4fc4-a7da-87448a4e30f2" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "cb95cec0-f3aa-4169-bbf2-3853768eccac" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085758Z:cb95cec0-f3aa-4169-bbf2-3853768eccac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:21:32 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:57:58 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/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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:57:44.5327464Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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/bf08514d-834e-4bf2-bf4c-642f3931ba26?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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136" ], + "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], "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": [ "21fbe4fb-e8e7-4b3c-acf9-b0cafaa75d81" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "283" ], + "x-ms-correlation-request-id": [ "f4703c92-52c7-4560-bfe4-db435426588d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085759Z:f4703c92-52c7-4560-bfe4-db435426588d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:22:02 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:57:58 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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": [ "137" ], + "x-ms-client-request-id": [ "c11dd2b5-0876-487a-82d4-a5b9305e125b" ], "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": [ "299fc99d-d58d-4261-8ac5-90c8b6ef9113" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "8dbf9cf5-4912-4cdd-91fc-cdf46b42e2e5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085800Z:8dbf9cf5-4912-4cdd-91fc-cdf46b42e2e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:22:03 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:57:59 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "ce0b5f81-2477-44d5-86cb-b10d63649e2b" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "28971620-dd5b-4360-bc98-e61d2bd2dac5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085801Z:28971620-dd5b-4360-bc98-e61d2bd2dac5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:22:03 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:58:00 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/e49d42a8-f710-402f-b7f2-119da4757add?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/e49d42a8-f710-402f-b7f2-119da4757add?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": [ "138", "139" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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": [ "e9b737cb-9ab3-4074-951f-0f11aadc0ce8" ], + "x-ms-request-id": [ "49288dc7-0e1a-4b89-ab57-113458bd04c0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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:20200730T085831Z:e9b737cb-9ab3-4074-951f-0f11aadc0ce8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:22:33 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:58:30 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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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/e49d42a8-f710-402f-b7f2-119da4757add?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/e49d42a8-f710-402f-b7f2-119da4757add?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": [ "138", "139", "140" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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": [ "281" ], + "x-ms-request-id": [ "db3f9daa-d64a-4bd7-938d-3565e3194a4b" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "33f29285-737d-49a7-b48c-4b0825cf0b20" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085902Z:33f29285-737d-49a7-b48c-4b0825cf0b20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:23:04 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:59: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/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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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/e49d42a8-f710-402f-b7f2-119da4757add?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/e49d42a8-f710-402f-b7f2-119da4757add?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": [ "138", "139", "140", "141" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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": [ "280" ], + "x-ms-request-id": [ "902caf8d-0eee-48a4-b774-f8ffcfc1dc22" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "c184ac14-257f-4e18-83ab-68966fe74f80" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085932Z:c184ac14-257f-4e18-83ab-68966fe74f80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:23:34 GMT" ] + "Date": [ "Thu, 30 Jul 2020 08:59:31 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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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/e49d42a8-f710-402f-b7f2-119da4757add?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/e49d42a8-f710-402f-b7f2-119da4757add?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": [ "138", "139", "140", "141", "142" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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": [ "289" ], + "x-ms-request-id": [ "73556a56-a1f0-4861-ace6-d78b421d6638" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "5f8f6091-9bea-41a0-a3ef-16d438a66f3c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090003Z:5f8f6091-9bea-41a0-a3ef-16d438a66f3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:24:04 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09: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/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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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/e49d42a8-f710-402f-b7f2-119da4757add?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/e49d42a8-f710-402f-b7f2-119da4757add?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": [ "138", "139", "140", "141", "142", "143" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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": [ "288" ], + "x-ms-request-id": [ "31a2d54e-f327-43f1-9928-5b00a59b903d" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "f7c69f2b-73e8-4f58-bf13-1b8a17ff6e87" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090033Z:f7c69f2b-73e8-4f58-bf13-1b8a17ff6e87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:24:37 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09: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/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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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/e49d42a8-f710-402f-b7f2-119da4757add?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/e49d42a8-f710-402f-b7f2-119da4757add?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": [ "138", "139", "140", "141", "142", "143", "144" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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": [ "287" ], + "x-ms-request-id": [ "ddbc4c46-fa1b-47c0-9aea-75f0b101626e" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "fe7e514b-4bfc-4541-9577-13baa3af2b80" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090103Z:fe7e514b-4bfc-4541-9577-13baa3af2b80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:25:07 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09: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/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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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/e49d42a8-f710-402f-b7f2-119da4757add?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/e49d42a8-f710-402f-b7f2-119da4757add?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": [ "138", "139", "140", "141", "142", "143", "144", "145" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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": [ "286" ], + "x-ms-request-id": [ "dfdcd2c5-8e0c-41db-afe7-b613fc866eae" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "cbc27bd6-9bb1-4764-b40d-484fcb245323" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090133Z:cbc27bd6-9bb1-4764-b40d-484fcb245323" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:25:37 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09: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/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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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/e49d42a8-f710-402f-b7f2-119da4757add?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/e49d42a8-f710-402f-b7f2-119da4757add?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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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": [ "285" ], + "x-ms-request-id": [ "2310e6e2-22c3-4378-b5b6-0f2c65f79d97" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "58b56773-aefc-4685-9fbf-4434939ff89a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090204Z:58b56773-aefc-4685-9fbf-4434939ff89a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:26:08 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09: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/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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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/e49d42a8-f710-402f-b7f2-119da4757add?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/e49d42a8-f710-402f-b7f2-119da4757add?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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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": [ "284" ], + "x-ms-request-id": [ "685c0fd1-e2e0-4827-a6ab-865713345d9d" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "05b0f841-b2a3-40e1-94e8-2beaf2383434" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090234Z:05b0f841-b2a3-40e1-94e8-2beaf2383434" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:26:38 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09: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/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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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/e49d42a8-f710-402f-b7f2-119da4757add?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/e49d42a8-f710-402f-b7f2-119da4757add?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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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": [ "283" ], + "x-ms-request-id": [ "1aefa651-602a-4406-bebc-21d52e315860" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "7a95abb7-4d6e-4574-9643-313c7d55822d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090304Z:7a95abb7-4d6e-4574-9643-313c7d55822d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:27:09 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:03: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/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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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/e49d42a8-f710-402f-b7f2-119da4757add?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/e49d42a8-f710-402f-b7f2-119da4757add?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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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": [ "282" ], + "x-ms-request-id": [ "1b78bd24-eb7c-4de4-97e3-694a994f57f0" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "45f602cb-510c-4483-b0a0-b5f590884f32" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090334Z:45f602cb-510c-4483-b0a0-b5f590884f32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:27:39 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09: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/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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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/e49d42a8-f710-402f-b7f2-119da4757add?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/e49d42a8-f710-402f-b7f2-119da4757add?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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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-correlation-request-id": [ "dc50196e-d4c7-477f-994b-842ad4756b94" ], + "x-ms-request-id": [ "1e84c7f0-7bda-4ea2-a7a9-e4584fadbf53" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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-routing-request-id": [ "NORTHEUROPE:20200730T090405Z:dc50196e-d4c7-477f-994b-842ad4756b94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:28:09 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09: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/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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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/e49d42a8-f710-402f-b7f2-119da4757add?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/e49d42a8-f710-402f-b7f2-119da4757add?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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150", "151" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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": [ "280" ], + "x-ms-request-id": [ "23339b4d-7564-464d-a8fc-b133b0d6076e" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "225974f2-325b-4440-8bed-0c8102421721" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090435Z:225974f2-325b-4440-8bed-0c8102421721" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:28:40 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:04:35 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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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/e49d42a8-f710-402f-b7f2-119da4757add?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/e49d42a8-f710-402f-b7f2-119da4757add?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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150", "151", "152" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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": [ "289" ], + "x-ms-request-id": [ "e20a5057-f712-4b9d-971e-5e167a0b4eef" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "fa2a4879-9bc5-40fb-99e2-05fa1d1036b7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090505Z:fa2a4879-9bc5-40fb-99e2-05fa1d1036b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:29:10 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:05:05 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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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/e49d42a8-f710-402f-b7f2-119da4757add?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/e49d42a8-f710-402f-b7f2-119da4757add?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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "d14f9ee9-4b14-4c1d-9110-f2789aac0e2e" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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-correlation-request-id": [ "196be133-0a40-4ecb-8cfe-a10459315660" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090536Z:196be133-0a40-4ecb-8cfe-a10459315660" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:29:40 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:05:35 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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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/e49d42a8-f710-402f-b7f2-119da4757add?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/e49d42a8-f710-402f-b7f2-119da4757add?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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153", "154" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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": [ "287" ], + "x-ms-request-id": [ "7cb008a3-1a39-4931-be5e-f6aba67b5c62" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "aee45fe4-ec1f-4590-b940-960018857436" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090606Z:aee45fe4-ec1f-4590-b940-960018857436" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:30:11 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:06 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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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+19": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e49d42a8-f710-402f-b7f2-119da4757add?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/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/e49d42a8-f710-402f-b7f2-119da4757add?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", "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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153", "154", "155" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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" ], @@ -1651,32 +1610,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "8abcaedb-11e6-46a6-a6e4-a9105500feea" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113041Z:b26b0a3b-2257-4072-910f-a10e931d7c08" ], + "x-ms-correlation-request-id": [ "375d2fcb-6922-46ea-afa1-b936d9d6cea3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090636Z:375d2fcb-6922-46ea-afa1-b936d9d6cea3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:30:41 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:36 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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T09:06:06.5815095Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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+20": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14\u0026operationResultResponseType=Location+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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e49d42a8-f710-402f-b7f2-119da4757add?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", "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" ], + "x-ms-unique-id": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153", "154", "155", "156" ], + "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], "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" ], @@ -1691,97 +1650,15 @@ "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": [ "76e8b68a-a1b7-4def-a596-5c0d810e2991" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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-correlation-request-id": [ "00c3ff91-815e-4c13-b0ba-4d6c022caaea" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090637Z:00c3ff91-815e-4c13-b0ba-4d6c022caaea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:42 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:36 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Get-AzKustoAttachedDatabaseConfiguration.Recording.json b/src/Kusto/test/Get-AzKustoAttachedDatabaseConfiguration.Recording.json index 594e9caffcc8..b14032f34bff 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/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": [ "157" ], + "x-ms-client-request-id": [ "e8bad009-d0a6-4ccc-ab08-0439b1f47a33" ], "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": [ "e1c11d3c-2cff-4c24-a196-d77777c05fb1" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "bf377b19-ebde-4cca-afdb-bf3db55620c2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090639Z:bf377b19-ebde-4cca-afdb-bf3db55620c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:43 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:38 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfkgb956\",\"name\":\"testfclusterkgb956/testdbconfkgb956\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabase5arkid\",\"attachedDatabaseNames\":[\"testdatabase5arkid\"],\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfkgb956?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfkgb956?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": [ "158" ], + "x-ms-client-request-id": [ "8392a932-6a0f-4a16-9512-6bb33c13f028" ], "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": [ "659f964c-63ec-4b20-b755-3d20e1b23aca" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "ead8400d-b7e0-4c4e-b63d-32565b4c2b67" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090639Z:ead8400d-b7e0-4c4e-b63d-32565b4c2b67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:44 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:38 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfkgb956\",\"name\":\"testfclusterkgb956/testdbconfkgb956\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabase5arkid\",\"attachedDatabaseNames\":[\"testdatabase5arkid\"],\"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..e84721e405ca 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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": [ "159" ], + "x-ms-client-request-id": [ "4ff7f649-5ea5-4d65-808e-494beaf83104" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -24,31 +24,31 @@ "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-request-id": [ "f711f3a2-f378-4300-9dfa-162bea865cf8" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "753fd4fb-e511-4230-bade-2530e5b1fb59" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090640Z:753fd4fb-e511-4230-bade-2530e5b1fb59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:44 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:39 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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/testgroup5arkid/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/testgroup5arkid/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": [ "160" ], + "x-ms-client-request-id": [ "103b52a4-b59b-4815-b3cc-3250a7d1abc4" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -65,21 +65,21 @@ "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-request-id": [ "3b35bcd8-eab1-4143-a123-278046e891a8" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "77ebb739-2152-4c7b-a22a-f9d0d55146ca" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090640Z:77ebb739-2152-4c7b-a22a-f9d0d55146ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:44 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:39 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956\",\"name\":\"testfclusterkgb956\",\"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://testfclusterkgb956.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testfclusterkgb956.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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z\",\"name\":\"testcluster0whu7z\",\"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://testcluster0whu7z.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster0whu7z.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..997768a2d89b 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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": [ "161" ], + "x-ms-client-request-id": [ "85fc2c70-cb03-4217-96e4-47d54261aa04" ], "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": [ "79a81a3f-9b70-48b0-b379-d0a359b7411f" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "b92b12c3-2aaa-4256-90f3-50ee165d0bcb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090641Z:b92b12c3-2aaa-4256-90f3-50ee165d0bcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:45 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:40 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956\",\"attachedDatabaseConfigurationName\":\"testdbconfkgb956\",\"databaseName\":\"testdatabase5arkid\"}]}" } } } \ 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..519e27c4bf42 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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": [ "162" ], + "x-ms-client-request-id": [ "37ff43d8-4519-48ab-9619-99c6604ef400" ], "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": [ "f7238654-e1cd-4be7-8d14-cf19f4b06c2c" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "103e9f3b-2422-46d0-a665-3fbfd9a087b9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090642Z:103e9f3b-2422-46d0-a665-3fbfd9a087b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:45 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:41 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..d3ecf820cf3d 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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": [ "163" ], + "x-ms-client-request-id": [ "56dfe5b6-be1d-47f5-930a-66cb148b711f" ], "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": [ "55f05f42-00ab-4a39-b53a-fd3cf66484f6" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "06d1f515-6a7d-4a94-8a14-d2bb5aa9f393" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090645Z:06d1f515-6a7d-4a94-8a14-d2bb5aa9f393" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:48 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:44 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/KustoClientsScenarioTest\",\"name\":\"testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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": [ "164" ], + "x-ms-client-request-id": [ "0dfe042b-a827-49ab-9539-ba87c9f66687" ], "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": [ "fa59bcf2-d170-40b3-87d5-994c8b4f6eb0" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "5aa7b4e0-4adb-47e1-91a1-52c9eec2def8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090645Z:5aa7b4e0-4adb-47e1-91a1-52c9eec2def8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:49 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:44 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/KustoClientsScenarioTest\",\"name\":\"testcluster5arkid/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..7881f13af447 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": [ "165" ], + "x-ms-client-request-id": [ "d56bc071-80df-4669-9f93-e2607f35ccc3" ], "CommandName": [ "Get-AzKustoClusterSku" ], "FullCommandName": [ "Get-AzKustoClusterSku_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,30 +21,30 @@ "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": [ "b4ca8019-1c92-4771-9d9a-d6f94c88bc4e" ], + "x-ms-correlation-request-id": [ "b4ca8019-1c92-4771-9d9a-d6f94c88bc4e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090646Z:b4ca8019-1c92-4771-9d9a-d6f94c88bc4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:49 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:45 GMT" ] }, "ContentHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Content-Length": [ "60312" ] + "Content-Length": [ "62986" ] }, - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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": [ "166" ], + "x-ms-client-request-id": [ "0911ffce-8587-4ce7-b0a2-4628c7670348" ], "CommandName": [ "Get-AzKustoClusterSku" ], "FullCommandName": [ "Get-AzKustoClusterSku_List1" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,15 +60,15 @@ "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-ms-ratelimit-remaining-subscription-reads": [ "11998" ], + "x-ms-request-id": [ "4a8f4b52-98ec-4655-a93e-6c81b2ce4cf5" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "98bdd433-6c36-4606-a0e8-b7df8237e7b8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090646Z:98bdd433-6c36-4606-a0e8-b7df8237e7b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:49 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "5054" ], diff --git a/src/Kusto/test/Get-AzKustoDataConnection.Recording.json b/src/Kusto/test/Get-AzKustoDataConnection.Recording.json index 37c4364db69d..7e5df3fb2167 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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": [ "172" ], + "x-ms-client-request-id": [ "278e9790-ea52-4032-9bf2-97ea2c7c75e6" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_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": [ "a726a4e7-5b3f-429c-a0ff-da5b9863b25b" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "21aa3b02-fbe9-4a66-8eba-5d986593056f" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "3bfb9384-721e-4214-b781-cee28bdeb1a0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090651Z:3bfb9384-721e-4214-b781-cee28bdeb1a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:52 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2477" ], + "Content-Length": [ "12" ], "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\":[]}" } }, - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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": [ "173" ], + "x-ms-client-request-id": [ "205e91e0-c862-4970-9ecb-f2d48bfea989" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -58,28 +58,26 @@ } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "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-ms-request-id": [ "e2e482c8-ba43-4834-ad3b-7c9a5dad276f" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "x-ms-correlation-request-id": [ "075f41aa-8a7e-4a66-b951-dc93938e8540" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090651Z:075f41aa-8a7e-4a66-b951-dc93938e8540" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:53 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "793" ], + "Content-Length": [ "300" ], "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": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid\u0027 is not found.\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Get-AzKustoDatabase.Recording.json b/src/Kusto/test/Get-AzKustoDatabase.Recording.json index 993c4ced80a7..015438e4c0f5 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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": [ "167" ], + "x-ms-client-request-id": [ "91aa6460-365f-4d86-863d-d31f73e061d9" ], "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": [ "98ffac6f-7cde-4647-8a98-bca7fc53faea" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "8a4fb15e-d730-4d7c-a536-48566522447c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090647Z:8a4fb15e-d730-4d7c-a536-48566522447c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:50 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:46 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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": [ "168" ], + "x-ms-client-request-id": [ "0d71d340-f04a-419c-a349-cf8757fd342d" ], "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": [ "9e2c90e5-ec41-469b-ae68-46da7d635d30" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "3cb7aab6-1b61-430a-ad8f-fd02f98d2ba8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090648Z:3cb7aab6-1b61-430a-ad8f-fd02f98d2ba8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:50 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:47 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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..c079dd32ef15 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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": [ "169" ], + "x-ms-client-request-id": [ "0be57606-0e0b-479e-9b34-6f13e5705dc3" ], "CommandName": [ "Get-AzKustoDatabasePrincipal" ], "FullCommandName": [ "Get-AzKustoDatabasePrincipal_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,21 +23,21 @@ "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": [ "6c8a1ea9-b518-49b8-a552-2760de91d150" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "059c5cbb-c92b-4c65-8157-e5a485f1c1c4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090649Z:059c5cbb-c92b-4c65-8157-e5a485f1c1c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:51 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "459" ], + "Content-Length": [ "464" ], "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\":\"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\":\"Assaf Taubenfeld\",\"role\":\"Admin\",\"type\":\"User\",\"fqn\":\"aaduser=53d8fc23-618e-49fa-ae3f-ae65cc60aa37;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"astauben@microsoft.com\",\"appId\":\"\",\"tenantName\":\"Microsoft\"}]}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Get-AzKustoDatabasePrincipalAssignment.Recording.json b/src/Kusto/test/Get-AzKustoDatabasePrincipalAssignment.Recording.json index d8a1f83f32ea..3d29750e3c24 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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": [ "170" ], + "x-ms-client-request-id": [ "50bc3598-2a74-4a17-84ab-4fc6d23a03a1" ], "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": [ "13e0e029-9a0a-40a3-89a3-a94e4c9f18e9" ], + "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": [ "dd453a3f-4e75-4120-bc6d-9b9b95c38c7d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090649Z:dd453a3f-4e75-4120-bc6d-9b9b95c38c7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:51 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1260" ], + "Content-Length": [ "1265" ], "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/KustoClientsScenarioTest\",\"name\":\"testcluster5arkid/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/be402560-eb61-4a86-b130-d9af768b8d3f\",\"name\":\"testcluster5arkid/testdatabase5arkid/be402560-eb61-4a86-b130-d9af768b8d3f\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"astauben@microsoft.com\",\"role\":\"Admin\",\"principalType\":\"User\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"Assaf Taubenfeld\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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": [ "171" ], + "x-ms-client-request-id": [ "88c6d339-8b7e-413b-9cd5-c9d043975c26" ], "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": [ "72877e85-2e2e-4fbf-8cd2-d4ea356b6dfe" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "13ce5ec1-e2a7-45df-9ee2-046ca63fc8dc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090650Z:13ce5ec1-e2a7-45df-9ee2-046ca63fc8dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:52 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:06:49 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/KustoClientsScenarioTest\",\"name\":\"testcluster5arkid/testdatabase5arkid/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..d3ea506d1f4a 100644 --- a/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Recording.json +++ b/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Recording.json @@ -1,9 +1,9 @@ { - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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 \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubns5arkid/eventhubs/eventhub5arkid\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnection5arkidani9hf\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -11,35 +11,115 @@ "Content-Length": [ "532" ] } }, + "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/b7b054b2-8b36-423c-8b15-ea110f22cc96?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "17b0346a-fd2a-4d0a-963f-e89cbf1cf9ef" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b7b054b2-8b36-423c-8b15-ea110f22cc96?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "d541308d-6cf1-4db6-8702-563788fd8531" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090652Z:d541308d-6cf1-4db6-8702-563788fd8531" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 09:06:51 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b7b054b2-8b36-423c-8b15-ea110f22cc96?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/b7b054b2-8b36-423c-8b15-ea110f22cc96?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "174", "175" ], + "x-ms-client-request-id": [ "9a52768d-955a-41d7-b95f-2492c6bc7fe6", "9a52768d-955a-41d7-b95f-2492c6bc7fe6" ], + "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": { "Cache-Control": [ "no-cache" ], "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-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "b273da42-ede1-4189-ba7a-7827b9a6eeaf" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "96229dde-1374-4c76-9218-74a57204597d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090723Z:96229dde-1374-4c76-9218-74a57204597d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:55 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:07:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "103" ], + "Content-Length": [ "510" ], "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": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/b7b054b2-8b36-423c-8b15-ea110f22cc96\",\"name\":\"b7b054b2-8b36-423c-8b15-ea110f22cc96\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:06:52.7631978Z\",\"endTime\":\"2020-07-30T09:06:56.4355088Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"6d4865aa-e2d5-4dad-917c-1096b27a9f91\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b7b054b2-8b36-423c-8b15-ea110f22cc96?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/b7b054b2-8b36-423c-8b15-ea110f22cc96?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "174", "175", "176" ], + "x-ms-client-request-id": [ "9a52768d-955a-41d7-b95f-2492c6bc7fe6", "9a52768d-955a-41d7-b95f-2492c6bc7fe6", "9a52768d-955a-41d7-b95f-2492c6bc7fe6" ], + "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": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "2d2ee4ee-2d7f-4aeb-a3b4-24127bd003b0" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "bac5d50f-742a-4099-b830-16fdb6e3429d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090723Z:bac5d50f-742a-4099-b830-16fdb6e3429d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 09:07:23 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null } }, - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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 \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubnsgridkgb956/eventhubs/eventgridkgb956\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Storage/storageAccounts/storage5arkid\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnection5arkidv8aetj\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -47,35 +127,115 @@ "Content-Length": [ "687" ] } }, + "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/f91a7d30-f348-4178-9c39-fa1ce956badb?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "0767e000-d474-4957-8e78-60107ad8aaa0" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f91a7d30-f348-4178-9c39-fa1ce956badb?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "8eece88e-2589-4972-856a-e25c1f5cf8b6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090723Z:8eece88e-2589-4972-856a-e25c1f5cf8b6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 09:07:23 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f91a7d30-f348-4178-9c39-fa1ce956badb?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/f91a7d30-f348-4178-9c39-fa1ce956badb?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "177", "178" ], + "x-ms-client-request-id": [ "5bd9b499-1ca0-421f-916b-32e79a6186a3", "5bd9b499-1ca0-421f-916b-32e79a6186a3" ], + "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": { "Cache-Control": [ "no-cache" ], "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-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "3c363e23-a8d3-4289-b101-336b8c4fda86" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "5a9e705a-61c8-4727-adcf-f851f24e9c6b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090754Z:5a9e705a-61c8-4727-adcf-f851f24e9c6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:57 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:07:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "103" ], + "Content-Length": [ "518" ], "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": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/f91a7d30-f348-4178-9c39-fa1ce956badb\",\"name\":\"f91a7d30-f348-4178-9c39-fa1ce956badb\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:07:23.8659517Z\",\"endTime\":\"2020-07-30T09:07:26.9130567Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventGridIngestionSourceAdd\",\"RootActivityId\":\"a67cd8a3-e34b-4d5a-9943-93944e33e550\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f91a7d30-f348-4178-9c39-fa1ce956badb?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/f91a7d30-f348-4178-9c39-fa1ce956badb?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "177", "178", "179" ], + "x-ms-client-request-id": [ "5bd9b499-1ca0-421f-916b-32e79a6186a3", "5bd9b499-1ca0-421f-916b-32e79a6186a3", "5bd9b499-1ca0-421f-916b-32e79a6186a3" ], + "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": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "e3439020-e853-4d9a-a869-6e8bef2dc7a0" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "d4fcbf90-1cf3-44e2-a592-f19b50c3031d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090754Z:d4fcbf90-1cf3-44e2-a592-f19b50c3031d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 09:07:53 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null } }, - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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 \"dataFormat\": \"JSON\",\r\n \"iotHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Devices/IotHubs/iothub5arkid\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"sharedAccessPolicyName\": \"registryRead\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnection5arkidqynp9a\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -83,38 +243,120 @@ "Content-Length": [ "514" ] } }, + "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/49897543-1e1b-49f8-8560-c20afdcb0d2b?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "f16f1ca6-be9d-4ec6-a163-a2c662728773" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/49897543-1e1b-49f8-8560-c20afdcb0d2b?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "50cba7c2-bcc2-4561-aebc-fcf16d4920e0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090754Z:50cba7c2-bcc2-4561-aebc-fcf16d4920e0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 09:07:54 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/49897543-1e1b-49f8-8560-c20afdcb0d2b?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/49897543-1e1b-49f8-8560-c20afdcb0d2b?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "180", "181" ], + "x-ms-client-request-id": [ "debbd53c-b307-4057-b8ef-41cd0aae54d0", "debbd53c-b307-4057-b8ef-41cd0aae54d0" ], + "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": { "Cache-Control": [ "no-cache" ], "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-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "fb70daf1-9d06-429a-be37-5fb7257feb11" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "293fcee4-1f3b-4094-b526-e55054c6a972" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090826Z:293fcee4-1f3b-4094-b526-e55054c6a972" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:58 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:08:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "103" ], + "Content-Length": [ "561" ], "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": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/49897543-1e1b-49f8-8560-c20afdcb0d2b\",\"name\":\"49897543-1e1b-49f8-8560-c20afdcb0d2b\",\"status\":\"Failed\",\"startTime\":\"2020-07-30T09:07:54.8060326Z\",\"endTime\":\"2020-07-30T09:07:56.3688852Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"1d2484c9-345f-4509-a477-0f29298cec8d\",\"provisioningState\":\"Failed\",\"OperationState\":\"Failed\"},\"error\":{\"code\":\"Failed\",\"message\":\"Internal Server Error\"}}" + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/49897543-1e1b-49f8-8560-c20afdcb0d2b?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/49897543-1e1b-49f8-8560-c20afdcb0d2b?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "180", "181", "182" ], + "x-ms-client-request-id": [ "debbd53c-b307-4057-b8ef-41cd0aae54d0", "debbd53c-b307-4057-b8ef-41cd0aae54d0", "debbd53c-b307-4057-b8ef-41cd0aae54d0" ], + "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": 500, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "0f22b382-df1f-476c-a4f2-427a9e105dc3" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-failure-cause": [ "service" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-correlation-request-id": [ "6d4fcc4c-7039-48cf-afed-4e066382170d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090827Z:6d4fcc4c-7039-48cf-afed-4e066382170d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 09:08:26 GMT" ], + "Connection": [ "close" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null } }, - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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": [ "183" ], + "x-ms-client-request-id": [ "a064fb2e-3759-4348-bb3f-d93b96aca1c2" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -131,29 +373,29 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-request-id": [ "a381c68c-4bc0-4219-a302-5fd0bf02ed9b" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "51507993-2d87-4d0d-bee7-8fcc4815b223" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090828Z:51507993-2d87-4d0d-bee7-8fcc4815b223" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:58 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:08:27 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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 \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubns5arkid/eventhubs/eventhub5arkid\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnection5arkidani9hf\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -161,38 +403,118 @@ "Content-Length": [ "532" ] } }, + "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/e2191075-1d4a-424c-a864-1b41ca88afa9?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "1393ae58-64b4-4015-9271-850f6880ae35" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e2191075-1d4a-424c-a864-1b41ca88afa9?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "5325a710-86d3-401a-b6e2-ddcd178f954d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090828Z:5325a710-86d3-401a-b6e2-ddcd178f954d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 09:08:27 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e2191075-1d4a-424c-a864-1b41ca88afa9?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/e2191075-1d4a-424c-a864-1b41ca88afa9?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "184", "185" ], + "x-ms-client-request-id": [ "c739b762-39f3-4c1a-a728-03b6d9f0efb0", "c739b762-39f3-4c1a-a728-03b6d9f0efb0" ], + "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": { "Cache-Control": [ "no-cache" ], "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-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-request-id": [ "2e9edaf8-938e-4af2-b368-e48e108c7bdc" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "4dc3ecff-27f0-49c1-956d-93d6706ab48e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090858Z:4dc3ecff-27f0-49c1-956d-93d6706ab48e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:00 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:08:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "103" ], + "Content-Length": [ "510" ], "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": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e2191075-1d4a-424c-a864-1b41ca88afa9\",\"name\":\"e2191075-1d4a-424c-a864-1b41ca88afa9\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:08:28.6254342Z\",\"endTime\":\"2020-07-30T09:08:31.9705321Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"570a68b0-8ed0-458f-ad3e-91534db74d86\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e2191075-1d4a-424c-a864-1b41ca88afa9?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/e2191075-1d4a-424c-a864-1b41ca88afa9?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "184", "185", "186" ], + "x-ms-client-request-id": [ "c739b762-39f3-4c1a-a728-03b6d9f0efb0", "c739b762-39f3-4c1a-a728-03b6d9f0efb0", "c739b762-39f3-4c1a-a728-03b6d9f0efb0" ], + "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": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "137904f7-077b-46b4-8ac7-3ca03415e732" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "x-ms-correlation-request-id": [ "7a4180eb-d4c3-4dbf-b361-87e4678912bc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090859Z:7a4180eb-d4c3-4dbf-b361-87e4678912bc" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 09:08:58 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null } }, - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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": [ "187" ], + "x-ms-client-request-id": [ "d543a96b-fe5f-43f0-8a15-e19772e0ffe4" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -209,29 +531,29 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "x-ms-request-id": [ "e54d1164-e0ff-459d-9df0-c2d51ae512e4" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "eca5221f-ecc8-47b2-b4fc-b0523d07da03" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090859Z:eca5221f-ecc8-47b2-b4fc-b0523d07da03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:00 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:08:59 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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 \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubnsgridkgb956/eventhubs/eventgridkgb956\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Storage/storageAccounts/storage5arkid\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnection5arkidv8aetj\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -239,38 +561,118 @@ "Content-Length": [ "687" ] } }, + "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/7da709af-833c-44fb-98e8-f128dbcfd403?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "520687cd-c27f-4c0d-931d-46bed27bac6e" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7da709af-833c-44fb-98e8-f128dbcfd403?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "765e1f8f-7c15-4591-82e9-fe059333e7b6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090900Z:765e1f8f-7c15-4591-82e9-fe059333e7b6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 09:08:59 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7da709af-833c-44fb-98e8-f128dbcfd403?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/7da709af-833c-44fb-98e8-f128dbcfd403?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "188", "189" ], + "x-ms-client-request-id": [ "eda2344a-c4f2-4ec6-8fc9-0554ecebcdae", "eda2344a-c4f2-4ec6-8fc9-0554ecebcdae" ], + "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": { "Cache-Control": [ "no-cache" ], "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-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], + "x-ms-request-id": [ "0ce1402a-796c-41dd-a9fc-f2ac7dbdf327" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "bc119877-c92c-44f1-b24e-4e35c7a63ae4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090930Z:bc119877-c92c-44f1-b24e-4e35c7a63ae4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:02 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:09:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "103" ], + "Content-Length": [ "518" ], "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": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7da709af-833c-44fb-98e8-f128dbcfd403\",\"name\":\"7da709af-833c-44fb-98e8-f128dbcfd403\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:09:00.0196354Z\",\"endTime\":\"2020-07-30T09:09:03.4886524Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventGridIngestionSourceAdd\",\"RootActivityId\":\"f6ed93f4-b72b-4dcd-b7b4-99a806751260\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "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]+DataViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7da709af-833c-44fb-98e8-f128dbcfd403?api-version=2020-06-14\u0026operationResultResponseType=Location+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/providers/Microsoft.Kusto/locations/East%20US/operationResults/7da709af-833c-44fb-98e8-f128dbcfd403?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "172" ], - "x-ms-client-request-id": [ "e9919a4d-44b3-4b21-a0a0-adf618f12ac8" ], + "x-ms-unique-id": [ "188", "189", "190" ], + "x-ms-client-request-id": [ "eda2344a-c4f2-4ec6-8fc9-0554ecebcdae", "eda2344a-c4f2-4ec6-8fc9-0554ecebcdae", "eda2344a-c4f2-4ec6-8fc9-0554ecebcdae" ], + "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": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "3d516c6e-9bd6-4a6e-bdd4-1b74ade0b9fc" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], + "x-ms-correlation-request-id": [ "7c1b273e-d4b9-426c-bc5f-3ec0731398a5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090930Z:7c1b273e-d4b9-426c-bc5f-3ec0731398a5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 09:09:29 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "191" ], + "x-ms-client-request-id": [ "69faf685-26c6-43b7-a0ca-245c71fef439" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -287,29 +689,29 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], + "x-ms-request-id": [ "1cfb35b7-e15c-4b3e-bd47-208cb3d0f30c" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "4fab42cf-c9d5-4818-9b25-ef6d27f4b611" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090931Z:4fab42cf-c9d5-4818-9b25-ef6d27f4b611" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:03 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:09:30 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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 \"dataFormat\": \"JSON\",\r\n \"iotHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Devices/IotHubs/iothub5arkid\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"sharedAccessPolicyName\": \"registryRead\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnection5arkidqynp9a\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -317,28 +719,110 @@ "Content-Length": [ "514" ] } }, + "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/70b64dd6-2cfb-40e5-a95b-68f6444f0fcd?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "f4847828-241f-489d-9feb-492597a83e94" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/70b64dd6-2cfb-40e5-a95b-68f6444f0fcd?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "d0f40801-9389-4dfd-bb97-4dda4832b233" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090931Z:d0f40801-9389-4dfd-bb97-4dda4832b233" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 09:09:30 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/70b64dd6-2cfb-40e5-a95b-68f6444f0fcd?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/70b64dd6-2cfb-40e5-a95b-68f6444f0fcd?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "192", "193" ], + "x-ms-client-request-id": [ "99bdbb13-f044-4020-ae57-c2cd1a459034", "99bdbb13-f044-4020-ae57-c2cd1a459034" ], + "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": { "Cache-Control": [ "no-cache" ], "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-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], + "x-ms-request-id": [ "d677f3de-b1a4-4981-b393-2af43f44dd4d" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "76b27038-fd52-4a83-ac25-fd7f1e14fa60" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091001Z:76b27038-fd52-4a83-ac25-fd7f1e14fa60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:03 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:10:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "103" ], + "Content-Length": [ "561" ], "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": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/70b64dd6-2cfb-40e5-a95b-68f6444f0fcd\",\"name\":\"70b64dd6-2cfb-40e5-a95b-68f6444f0fcd\",\"status\":\"Failed\",\"startTime\":\"2020-07-30T09:09:31.4513364Z\",\"endTime\":\"2020-07-30T09:09:32.9983312Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"f81b9b8e-8ec1-4dd0-b7b8-05f6481a4357\",\"provisioningState\":\"Failed\",\"OperationState\":\"Failed\"},\"error\":{\"code\":\"Failed\",\"message\":\"Internal Server Error\"}}" + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/70b64dd6-2cfb-40e5-a95b-68f6444f0fcd?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/70b64dd6-2cfb-40e5-a95b-68f6444f0fcd?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "192", "193", "194" ], + "x-ms-client-request-id": [ "99bdbb13-f044-4020-ae57-c2cd1a459034", "99bdbb13-f044-4020-ae57-c2cd1a459034", "99bdbb13-f044-4020-ae57-c2cd1a459034" ], + "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": 500, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "9ec18fc8-8d0f-4185-905b-a438fcfebfc7" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-failure-cause": [ "service" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "294" ], + "x-ms-correlation-request-id": [ "c7856021-a473-424a-89f1-e25e1aed3eb5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091002Z:c7856021-a473-424a-89f1-e25e1aed3eb5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 09:10:01 GMT" ], + "Connection": [ "close" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null } } } \ No newline at end of file diff --git a/src/Kusto/test/Invoke-AzKustoDetachClusterFollowerDatabase.Recording.json b/src/Kusto/test/Invoke-AzKustoDetachClusterFollowerDatabase.Recording.json index 8397c089890c..de3b4364b95b 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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": [ "bb4501a9-20b9-475d-a1c9-a13bd42607d0" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8951faf3-8389-4da4-ad72-637363f7039b?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "9584386c-4075-44e4-ac64-1bbba76edf6e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091003Z:9584386c-4075-44e4-ac64-1bbba76edf6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:04 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:10:03 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf\",\"name\":\"testcluster5arkid/testdatabaseani9hf\",\"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/8951faf3-8389-4da4-ad72-637363f7039b?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/8951faf3-8389-4da4-ad72-637363f7039b?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": [ "195", "196" ], + "x-ms-client-request-id": [ "79073fe5-30f6-425f-bc7a-22bd6e4542ee", "79073fe5-30f6-425f-bc7a-22bd6e4542ee" ], "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-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-request-id": [ "a56da1a3-1a84-47b1-905b-0a1741de46d6" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "20bea218-dbc7-4ecb-8692-e616df58c4a7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091034Z:20bea218-dbc7-4ecb-8692-e616df58c4a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:35 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:10:33 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/8951faf3-8389-4da4-ad72-637363f7039b\",\"name\":\"8951faf3-8389-4da4-ad72-637363f7039b\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:10:03.8233627Z\",\"endTime\":\"2020-07-30T09:10:07.1373046Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"829918cd-d4ce-4a30-8153-dc60fd2caf66\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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": [ "195", "196", "197" ], + "x-ms-client-request-id": [ "79073fe5-30f6-425f-bc7a-22bd6e4542ee", "79073fe5-30f6-425f-bc7a-22bd6e4542ee", "79073fe5-30f6-425f-bc7a-22bd6e4542ee" ], "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": [ "299" ], + "x-ms-request-id": [ "529ba209-2a62-4766-ac1d-4c6e3dd4de65" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "2ac407c2-b247-44de-b7e9-16b08d7d1ac3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091034Z:2ac407c2-b247-44de-b7e9-16b08d7d1ac3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:36 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:10:34 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf\",\"name\":\"testcluster5arkid/testdatabaseani9hf\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf?api-version=2020-06-14", + "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\r\n \"databaseName\": \"testdatabaseani9hf\",\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": [ "8490509a-2833-4dc5-a45b-589ef51be2ea" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6d63ad0d-7228-48fa-8865-6c7671c57a41?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": [ "829c9f52-01f8-4112-8729-b4722ec3b055" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113236Z:829c9f52-01f8-4112-8729-b4722ec3b055" ], + "x-ms-correlation-request-id": [ "830dc7ac-b278-4328-99df-d191eee32f5d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091035Z:830dc7ac-b278-4328-99df-d191eee32f5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:36 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:10:34 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf\",\"name\":\"testfclusterkgb956/testdbconfani9hf\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabaseani9hf\",\"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/6d63ad0d-7228-48fa-8865-6c7671c57a41?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/6d63ad0d-7228-48fa-8865-6c7671c57a41?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": [ "198", "199" ], + "x-ms-client-request-id": [ "a1a83150-4a7e-48d3-b6c9-46cc5811e080", "a1a83150-4a7e-48d3-b6c9-46cc5811e080" ], "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": [ "f1ec28cd-f384-42e4-8d4a-52edec4a9900" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "x-ms-request-id": [ "278a44f2-f15a-4fd1-b051-2c572abf3eca" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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-correlation-request-id": [ "4bf558b7-e7f2-411b-9c47-c9a5592c644b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091105Z:4bf558b7-e7f2-411b-9c47-c9a5592c644b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:33:06 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:11:04 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/6d63ad0d-7228-48fa-8865-6c7671c57a41\",\"name\":\"6d63ad0d-7228-48fa-8865-6c7671c57a41\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:10:35.2867447Z\",\"endTime\":\"2020-07-30T09:10:37.5369235Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"c9ad8ddb-edc0-4f71-9408-4525d2708e7a\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf?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": [ "198", "199", "200" ], + "x-ms-client-request-id": [ "a1a83150-4a7e-48d3-b6c9-46cc5811e080", "a1a83150-4a7e-48d3-b6c9-46cc5811e080", "a1a83150-4a7e-48d3-b6c9-46cc5811e080" ], "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": [ "467e2c19-1af7-49b9-9737-cca24395cffd" ], + "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": [ "1d305f14-3c1b-4912-892c-75a1d73b1a63" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091106Z:1d305f14-3c1b-4912-892c-75a1d73b1a63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:33:06 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:11:05 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf\",\"name\":\"testfclusterkgb956/testdbconfani9hf\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabaseani9hf\",\"attachedDatabaseNames\":[\"testdatabaseani9hf\"],\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/detachFollowerDatabases?api-version=2020-06-14", + "Content": "{\r\n \"attachedDatabaseConfigurationName\": \"testdbconfani9hf\",\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956\"\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/c8f7a37f-21bf-46c3-be95-d734b2c7b86b?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "7f0e88ea-093e-46bd-b2e8-d10941f58bd7" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c8f7a37f-21bf-46c3-be95-d734b2c7b86b?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "1199" ], + "x-ms-correlation-request-id": [ "0279a7a0-db8a-4d83-8871-5e43ede469c4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091106Z:0279a7a0-db8a-4d83-8871-5e43ede469c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:33:07 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:11:05 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/c8f7a37f-21bf-46c3-be95-d734b2c7b86b?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/c8f7a37f-21bf-46c3-be95-d734b2c7b86b?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": [ "201", "202" ], + "x-ms-client-request-id": [ "65edbe59-efee-4032-a298-20540fd3bf31", "65edbe59-efee-4032-a298-20540fd3bf31" ], "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": [ "297" ], + "x-ms-request-id": [ "71027143-9ba9-49b0-915f-e52ee8fe2876" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "32f68e20-28a8-4e59-9ec7-4737017b35a9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091136Z:32f68e20-28a8-4e59-9ec7-4737017b35a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:33:37 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:11:36 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/c8f7a37f-21bf-46c3-be95-d734b2c7b86b\",\"name\":\"c8f7a37f-21bf-46c3-be95-d734b2c7b86b\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:11:06.4392731Z\",\"endTime\":\"2020-07-30T09:11:09.0007767Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"58fedda9-93c6-4c1d-9232-a436c39a6e80\",\"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/c8f7a37f-21bf-46c3-be95-d734b2c7b86b?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/c8f7a37f-21bf-46c3-be95-d734b2c7b86b?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": [ "201", "202", "203" ], + "x-ms-client-request-id": [ "65edbe59-efee-4032-a298-20540fd3bf31", "65edbe59-efee-4032-a298-20540fd3bf31", "65edbe59-efee-4032-a298-20540fd3bf31" ], "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": [ "1a383dc8-0528-415c-b418-6827d6327148" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "296" ], + "x-ms-correlation-request-id": [ "0efe0d7c-93db-4eaa-b1d0-6b89b995ed79" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091136Z:0efe0d7c-93db-4eaa-b1d0-6b89b995ed79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:33:37 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:11:36 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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": [ "204" ], + "x-ms-client-request-id": [ "0e8ea190-16de-41a4-9fdf-42c2191842ea" ], "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/40cd0e2f-ef0d-476e-b11b-d2026cdb8429?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/40cd0e2f-ef0d-476e-b11b-d2026cdb8429?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "95ce0ea7-a4a9-4c81-b9aa-4f18f0cdd602" ], + "x-ms-correlation-request-id": [ "95ce0ea7-a4a9-4c81-b9aa-4f18f0cdd602" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091137Z:95ce0ea7-a4a9-4c81-b9aa-4f18f0cdd602" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:33:38 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:11:37 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/40cd0e2f-ef0d-476e-b11b-d2026cdb8429?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/40cd0e2f-ef0d-476e-b11b-d2026cdb8429?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": [ "204", "205" ], + "x-ms-client-request-id": [ "0e8ea190-16de-41a4-9fdf-42c2191842ea", "0e8ea190-16de-41a4-9fdf-42c2191842ea" ], "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": [ "295" ], + "x-ms-request-id": [ "a8321ca7-3eca-45ce-8daa-f916c68d2185" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "fa07461e-331f-42d8-a688-68170489b47d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091207Z:fa07461e-331f-42d8-a688-68170489b47d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:34:09 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:12: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/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/40cd0e2f-ef0d-476e-b11b-d2026cdb8429\",\"name\":\"40cd0e2f-ef0d-476e-b11b-d2026cdb8429\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:11:37.3497607Z\",\"endTime\":\"2020-07-30T09:11:40.5374813Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"e360ee54-f679-496b-a9d6-9fab87bdf38c\",\"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/40cd0e2f-ef0d-476e-b11b-d2026cdb8429?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/40cd0e2f-ef0d-476e-b11b-d2026cdb8429?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": [ "204", "205", "206" ], + "x-ms-client-request-id": [ "0e8ea190-16de-41a4-9fdf-42c2191842ea", "0e8ea190-16de-41a4-9fdf-42c2191842ea", "0e8ea190-16de-41a4-9fdf-42c2191842ea" ], "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": [ "78100180-7546-43f2-b787-1c114fa396f6" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "294" ], + "x-ms-correlation-request-id": [ "6146a83c-aa03-49b6-814f-9e9e1e7007c1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091207Z:6146a83c-aa03-49b6-814f-9e9e1e7007c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:34:09 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:12:06 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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": [ "a3860446-44c1-4732-83c7-5d13cc36fb7f" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/66f41c54-f6a5-4cd0-a6e2-18afc84e9d3a?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "02db381b-be99-4584-80ef-5a5fc9da4e5c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091208Z:02db381b-be99-4584-80ef-5a5fc9da4e5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:34:09 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:12:07 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj\",\"name\":\"testcluster5arkid/testdatabasev8aetj\",\"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/66f41c54-f6a5-4cd0-a6e2-18afc84e9d3a?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/66f41c54-f6a5-4cd0-a6e2-18afc84e9d3a?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": [ "207", "208" ], + "x-ms-client-request-id": [ "28339fc7-0a00-4354-a862-f63a893e1382", "28339fc7-0a00-4354-a862-f63a893e1382" ], "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": [ "293" ], + "x-ms-request-id": [ "324ac783-68d1-4f76-a338-78480b99d065" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "95c3f5a2-4573-4aef-99a2-f23411c41f5a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091238Z:95c3f5a2-4573-4aef-99a2-f23411c41f5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:34:39 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:12:38 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/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/66f41c54-f6a5-4cd0-a6e2-18afc84e9d3a\",\"name\":\"66f41c54-f6a5-4cd0-a6e2-18afc84e9d3a\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:12:08.4495413Z\",\"endTime\":\"2020-07-30T09:12:11.0435304Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"cfb79cb0-9c26-4f22-b4dd-d54c61188d0a\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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": [ "207", "208", "209" ], + "x-ms-client-request-id": [ "28339fc7-0a00-4354-a862-f63a893e1382", "28339fc7-0a00-4354-a862-f63a893e1382", "28339fc7-0a00-4354-a862-f63a893e1382" ], "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": [ "298" ], + "x-ms-request-id": [ "02c8023b-bc87-4838-a7a9-84f794154476" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "f8e4a1ae-7cd6-4ae7-be8c-5b85964e9177" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091239Z:f8e4a1ae-7cd6-4ae7-be8c-5b85964e9177" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:34:40 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:12:38 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj\",\"name\":\"testcluster5arkid/testdatabasev8aetj\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?api-version=2020-06-14", + "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\r\n \"databaseName\": \"testdatabasev8aetj\",\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": [ "7e2148e7-059a-42bd-8702-a156b045234c" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/81f61eee-e0d1-4faa-9558-916100d260a6?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "72b95bba-a2bc-4b11-8218-1da801ecf0bf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091240Z:72b95bba-a2bc-4b11-8218-1da801ecf0bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:34:41 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:12:39 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj\",\"name\":\"testfclusterkgb956/testdbconfv8aetj\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabasev8aetj\",\"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/81f61eee-e0d1-4faa-9558-916100d260a6?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/81f61eee-e0d1-4faa-9558-916100d260a6?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": [ "210", "211" ], + "x-ms-client-request-id": [ "50186de9-e774-4e30-8dbd-f417ed408ff9", "50186de9-e774-4e30-8dbd-f417ed408ff9" ], "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": [ "292" ], + "x-ms-request-id": [ "3a37be2c-a6fc-43ad-8f95-935b184495e8" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "cc05c37c-115c-47bb-8600-f0aa24e6dfa0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091310Z:cc05c37c-115c-47bb-8600-f0aa24e6dfa0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:35:10 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:13:10 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/81f61eee-e0d1-4faa-9558-916100d260a6\",\"name\":\"81f61eee-e0d1-4faa-9558-916100d260a6\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:12:39.9547363Z\",\"endTime\":\"2020-07-30T09:12:43.4708195Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"d59f2101-d759-49e2-a6f6-d42b9c55b615\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?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": [ "210", "211", "212" ], + "x-ms-client-request-id": [ "50186de9-e774-4e30-8dbd-f417ed408ff9", "50186de9-e774-4e30-8dbd-f417ed408ff9", "50186de9-e774-4e30-8dbd-f417ed408ff9" ], "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": [ "a347e08d-c2a4-45b7-b144-c936d44dc3be" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "aadf8cac-f5a2-4343-ad13-92e89dae6df7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091310Z:aadf8cac-f5a2-4343-ad13-92e89dae6df7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:35:11 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:13:10 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj\",\"name\":\"testfclusterkgb956/testdbconfv8aetj\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabasev8aetj\",\"attachedDatabaseNames\":[\"testdatabasev8aetj\"],\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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": [ "213" ], + "x-ms-client-request-id": [ "5c191bd0-9510-4d63-82a4-39415cc590ba" ], "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": [ "6e7f9d36-903d-4079-8765-43b36e1373a4" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "321d7d9e-b8bd-47af-afd2-55c9b80d642c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091311Z:321d7d9e-b8bd-47af-afd2-55c9b80d642c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:35:11 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:13:11 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/detachFollowerDatabases?api-version=2020-06-14", + "Content": "{\r\n \"attachedDatabaseConfigurationName\": \"testdbconfv8aetj\",\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956\"\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/6ff8aae0-c26d-4e9e-88c6-19d105fc3388?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "f9b52eff-a3e9-404e-82f0-4261d01c87fe" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6ff8aae0-c26d-4e9e-88c6-19d105fc3388?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "1198" ], + "x-ms-correlation-request-id": [ "79e4bae9-3118-4293-b9e6-ea68f7d5f506" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091311Z:79e4bae9-3118-4293-b9e6-ea68f7d5f506" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:35:11 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:13:11 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/6ff8aae0-c26d-4e9e-88c6-19d105fc3388?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/6ff8aae0-c26d-4e9e-88c6-19d105fc3388?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": [ "214", "215" ], + "x-ms-client-request-id": [ "db925d35-8db0-4fe9-8434-ae1a51cbe469", "db925d35-8db0-4fe9-8434-ae1a51cbe469" ], "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": [ "291" ], + "x-ms-request-id": [ "c54bf19b-aea3-46ed-b27b-65c56a67869b" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "d3796ce5-7eea-4592-ab62-620d370f17b5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091341Z:d3796ce5-7eea-4592-ab62-620d370f17b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:35:42 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:13:41 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/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/6ff8aae0-c26d-4e9e-88c6-19d105fc3388\",\"name\":\"6ff8aae0-c26d-4e9e-88c6-19d105fc3388\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:13:11.4416753Z\",\"endTime\":\"2020-07-30T09:13:13.926648Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"cca38989-ba07-42ad-a211-420095cfc712\",\"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/6ff8aae0-c26d-4e9e-88c6-19d105fc3388?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/6ff8aae0-c26d-4e9e-88c6-19d105fc3388?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": [ "214", "215", "216" ], + "x-ms-client-request-id": [ "db925d35-8db0-4fe9-8434-ae1a51cbe469", "db925d35-8db0-4fe9-8434-ae1a51cbe469", "db925d35-8db0-4fe9-8434-ae1a51cbe469" ], "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": [ "f2ef0a31-35cf-4e21-bc3b-418e8fcda41c" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "290" ], + "x-ms-correlation-request-id": [ "c97a09e7-cc62-4d70-a5d8-a6043684ce37" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091341Z:c97a09e7-cc62-4d70-a5d8-a6043684ce37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:35:43 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:13:41 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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": [ "217" ], + "x-ms-client-request-id": [ "85d2200b-37cc-45b6-a3d6-2f77dea9251e" ], "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/a2bfc0a0-ab03-4a7f-937f-73c6594734f5?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/a2bfc0a0-ab03-4a7f-937f-73c6594734f5?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": [ "63eb3b22-ea2f-4081-b3ec-25e6fe818a6f" ], + "x-ms-correlation-request-id": [ "63eb3b22-ea2f-4081-b3ec-25e6fe818a6f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091342Z:63eb3b22-ea2f-4081-b3ec-25e6fe818a6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:35:43 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:13:41 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/a2bfc0a0-ab03-4a7f-937f-73c6594734f5?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/a2bfc0a0-ab03-4a7f-937f-73c6594734f5?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": [ "217", "218" ], + "x-ms-client-request-id": [ "85d2200b-37cc-45b6-a3d6-2f77dea9251e", "85d2200b-37cc-45b6-a3d6-2f77dea9251e" ], "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": [ "289" ], + "x-ms-request-id": [ "8db85997-32dd-4a70-aa53-ba19989bd082" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "90ec3e20-e33f-4203-8dc7-9ac2b9c46c5b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091412Z:90ec3e20-e33f-4203-8dc7-9ac2b9c46c5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:36:13 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:14: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/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/a2bfc0a0-ab03-4a7f-937f-73c6594734f5\",\"name\":\"a2bfc0a0-ab03-4a7f-937f-73c6594734f5\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:13:42.3213553Z\",\"endTime\":\"2020-07-30T09:13:44.5715052Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"e1dfb51b-bece-440c-aba1-5bccfc33ad77\",\"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/a2bfc0a0-ab03-4a7f-937f-73c6594734f5?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/a2bfc0a0-ab03-4a7f-937f-73c6594734f5?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": [ "217", "218", "219" ], + "x-ms-client-request-id": [ "85d2200b-37cc-45b6-a3d6-2f77dea9251e", "85d2200b-37cc-45b6-a3d6-2f77dea9251e", "85d2200b-37cc-45b6-a3d6-2f77dea9251e" ], "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": [ "c9addc08-c73b-4304-aaf4-f0636693a443" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "288" ], + "x-ms-correlation-request-id": [ "52500b22-77bb-45b1-b1d7-41e4faa80034" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091412Z:52500b22-77bb-45b1-b1d7-41e4faa80034" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:36:13 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:14:12 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Invoke-AzKustoDiagnoseClusterVirtualNetwork.Recording.json b/src/Kusto/test/Invoke-AzKustoDiagnoseClusterVirtualNetwork.Recording.json index ae7dea22c555..7ee76b2be3ca 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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": [ "220" ], + "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd" ], "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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "7941ed23-7469-45c4-926c-67fa03060aa2" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/004a9abc-79d2-401f-915c-f37e20a499d2?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": [ "1197" ], + "x-ms-correlation-request-id": [ "fdcad114-7e5c-493d-a6bb-acca58ed7070" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091413Z:fdcad114-7e5c-493d-a6bb-acca58ed7070" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:36:14 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:14:13 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/004a9abc-79d2-401f-915c-f37e20a499d2?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/004a9abc-79d2-401f-915c-f37e20a499d2?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": [ "220", "221" ], + "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], "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": [ "287" ], + "x-ms-request-id": [ "ff511bf9-f2d4-406c-a01b-02583175786d" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "3dd82c56-64c6-4773-817a-a58cd890a421" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091444Z:3dd82c56-64c6-4773-817a-a58cd890a421" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:36:45 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:14:43 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?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/004a9abc-79d2-401f-915c-f37e20a499d2?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": [ "220", "221", "222" ], + "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], "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-correlation-request-id": [ "44650d71-cf0c-4504-aa9c-478e9aeb5880" ], + "x-ms-request-id": [ "dc902e00-0ad8-469a-a838-b19238b389cb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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-routing-request-id": [ "NORTHEUROPE:20200730T091514Z:44650d71-cf0c-4504-aa9c-478e9aeb5880" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:37:15 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:15:13 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?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/004a9abc-79d2-401f-915c-f37e20a499d2?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": [ "220", "221", "222", "223" ], + "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], "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": [ "285" ], + "x-ms-request-id": [ "69b2929d-fff1-4336-83a3-c81940947b14" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "78d19fcb-49ea-4722-b235-1a0a02932acf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091544Z:78d19fcb-49ea-4722-b235-1a0a02932acf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:37:46 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:15:44 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?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/004a9abc-79d2-401f-915c-f37e20a499d2?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": [ "220", "221", "222", "223", "224" ], + "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], "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": [ "284" ], + "x-ms-request-id": [ "dbb5ed6f-a2b8-4202-a9dc-d92f2f1da0db" ], + "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": [ "eefac2ba-5111-496b-9406-9a9be89ee15f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091615Z:eefac2ba-5111-496b-9406-9a9be89ee15f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:38:16 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:16:14 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?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/004a9abc-79d2-401f-915c-f37e20a499d2?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": [ "220", "221", "222", "223", "224", "225" ], + "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], "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-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "a30c11ac-1ad8-4459-87b0-c22402cf3971" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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-correlation-request-id": [ "5c0ec271-6180-4427-b721-d2c93e33d198" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091645Z:5c0ec271-6180-4427-b721-d2c93e33d198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:38:46 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:16:45 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?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/004a9abc-79d2-401f-915c-f37e20a499d2?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": [ "220", "221", "222", "223", "224", "225", "226" ], + "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], "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": [ "282" ], + "x-ms-request-id": [ "e0955c27-6d52-4f6d-9951-4043c5ad149b" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "55ce3e32-5a53-4cda-b76b-e049893a6d37" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091715Z:55ce3e32-5a53-4cda-b76b-e049893a6d37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:39:17 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:17:14 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?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/004a9abc-79d2-401f-915c-f37e20a499d2?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": [ "220", "221", "222", "223", "224", "225", "226", "227" ], + "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], "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": [ "281" ], + "x-ms-request-id": [ "c0adf65f-b1b0-4e63-bfea-689e5e7b3ab5" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "071ade8b-b01f-49b1-bf28-c7d87c88af54" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091745Z:071ade8b-b01f-49b1-bf28-c7d87c88af54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:39:47 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:17:45 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?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/004a9abc-79d2-401f-915c-f37e20a499d2?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": [ "220", "221", "222", "223", "224", "225", "226", "227", "228" ], + "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], "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": [ "280" ], + "x-ms-request-id": [ "89ec3c1e-4bf1-458b-9799-1e1870afeb59" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "011a2ccd-c6b9-4647-8dbb-1bbb64c18f45" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091816Z:011a2ccd-c6b9-4647-8dbb-1bbb64c18f45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:40:17 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:18:15 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?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/004a9abc-79d2-401f-915c-f37e20a499d2?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": [ "220", "221", "222", "223", "224", "225", "226", "227", "228", "229" ], + "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], "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": [ "279" ], + "x-ms-request-id": [ "b61238dc-505c-41de-bd49-86ef6650bee5" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "511a8d55-e35e-4e6f-a8c8-fd08fba69390" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091846Z:511a8d55-e35e-4e6f-a8c8-fd08fba69390" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:40:48 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:18:46 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?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/004a9abc-79d2-401f-915c-f37e20a499d2?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": [ "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230" ], + "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], "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": [ "278" ], + "x-ms-request-id": [ "1bcd84f2-aa4e-4357-a3a3-775c91cb5b0a" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "02312635-5dde-46cd-8c41-59db62331c20" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091916Z:02312635-5dde-46cd-8c41-59db62331c20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:41:18 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:19:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "360" ], + "Content-Length": [ "359" ], "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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:19:14.189814Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?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/004a9abc-79d2-401f-915c-f37e20a499d2?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": [ "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231" ], + "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], "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": [ "277" ], + "x-ms-request-id": [ "26ccd0cd-9452-44b8-93fb-9e1b9d2e2a58" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "bbff5b98-1bcb-4a9d-9b0d-3118b9d7cc5f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091916Z:bbff5b98-1bcb-4a9d-9b0d-3118b9d7cc5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:41:18 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:19:15 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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": [ "232" ], + "x-ms-client-request-id": [ "22405e2e-970a-49b6-8234-7f00545e8789" ], "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": [ "067764d7-2f1d-4829-89e1-bb37ce0ab3c9" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "8b9cfffc-d0f8-44b1-8b1e-67325ee7d46e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091917Z:8b9cfffc-d0f8-44b1-8b1e-67325ee7d46e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:41:18 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:19:16 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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": [ "233" ], + "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272" ], "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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "d658a7ab-d86e-4a91-973c-7608d2ecec01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "1196" ], + "x-ms-correlation-request-id": [ "11e6ce2a-87fa-4ef6-9194-9ebe9a61cef4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091917Z:11e6ce2a-87fa-4ef6-9194-9ebe9a61cef4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:41:19 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:19:16 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/554cbdfc-f453-4f45-bfc8-09f56272911d?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/554cbdfc-f453-4f45-bfc8-09f56272911d?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": [ "233", "234" ], + "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], "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": [ "276" ], + "x-ms-request-id": [ "fa228387-b179-4db3-9861-05ef877f79b0" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "af5422f7-7b6b-4ffb-84b4-5ae481656f39" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091948Z:af5422f7-7b6b-4ffb-84b4-5ae481656f39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:41:49 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:19:47 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?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/554cbdfc-f453-4f45-bfc8-09f56272911d?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": [ "233", "234", "235" ], + "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], "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": [ "288" ], + "x-ms-request-id": [ "4c0c7b21-b9e4-4ece-bc8c-eb2cb46fd1b0" ], + "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": [ "c1fc42d7-fc93-4607-b32d-876e2e1e4df2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092018Z:c1fc42d7-fc93-4607-b32d-876e2e1e4df2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:42:20 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:20:17 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?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/554cbdfc-f453-4f45-bfc8-09f56272911d?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": [ "233", "234", "235", "236" ], + "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], "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-correlation-request-id": [ "0f6580d4-acf3-4fc0-9d1e-2c78e3736090" ], + "x-ms-request-id": [ "7898739a-7bf6-4bb4-aa8c-71e499573f68" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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-routing-request-id": [ "NORTHEUROPE:20200730T092048Z:0f6580d4-acf3-4fc0-9d1e-2c78e3736090" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:42:50 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:20:48 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?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/554cbdfc-f453-4f45-bfc8-09f56272911d?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": [ "233", "234", "235", "236", "237" ], + "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], "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": [ "286" ], + "x-ms-request-id": [ "eb65c3e2-e2e9-40c6-94c6-ed93d7bbcec2" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "f0202517-d4c6-4767-9ce2-24c42ec62c7a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092119Z:f0202517-d4c6-4767-9ce2-24c42ec62c7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:43:20 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:21:18 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?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/554cbdfc-f453-4f45-bfc8-09f56272911d?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": [ "233", "234", "235", "236", "237", "238" ], + "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], "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": [ "285" ], + "x-ms-request-id": [ "51a75ffd-0c12-4d2f-b20c-decb1ce3c985" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "9a850dee-c98a-4472-8220-9d3096033d35" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092149Z:9a850dee-c98a-4472-8220-9d3096033d35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:43:51 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:21:48 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?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/554cbdfc-f453-4f45-bfc8-09f56272911d?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": [ "233", "234", "235", "236", "237", "238", "239" ], + "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], "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": [ "284" ], + "x-ms-request-id": [ "fce1d0c9-1415-48b4-9288-c2161964bc0c" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "a5092397-1405-47dd-bedb-f4c3312482be" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092219Z:a5092397-1405-47dd-bedb-f4c3312482be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:44:21 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:22:18 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?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/554cbdfc-f453-4f45-bfc8-09f56272911d?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": [ "233", "234", "235", "236", "237", "238", "239", "240" ], + "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], "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-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "443fcdd1-3e01-4884-a327-4bae7ea87ba7" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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-correlation-request-id": [ "f0cf98cf-bac2-482b-84ab-5fe615768b47" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092249Z:f0cf98cf-bac2-482b-84ab-5fe615768b47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:44:52 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:22:49 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?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/554cbdfc-f453-4f45-bfc8-09f56272911d?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": [ "233", "234", "235", "236", "237", "238", "239", "240", "241" ], + "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], "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": [ "282" ], + "x-ms-request-id": [ "831e3be4-d396-46b3-8a4f-33fb767c9415" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "63f38b45-d43d-4108-b52d-ee5518e21ac0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092320Z:63f38b45-d43d-4108-b52d-ee5518e21ac0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:45:22 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:23:19 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?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/554cbdfc-f453-4f45-bfc8-09f56272911d?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": [ "233", "234", "235", "236", "237", "238", "239", "240", "241", "242" ], + "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], "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": [ "281" ], + "x-ms-request-id": [ "44f5950b-e09c-474e-b85c-e6beabfcde7b" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "befc39a2-b715-407c-9e5c-c8b8d0d5b2e4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092350Z:befc39a2-b715-407c-9e5c-c8b8d0d5b2e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:45:52 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:23:50 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?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/554cbdfc-f453-4f45-bfc8-09f56272911d?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": [ "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243" ], + "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], "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": [ "280" ], + "x-ms-request-id": [ "c9336e2f-1f32-43cc-9b5e-b222c954d938" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "94d95a25-975b-43ca-9f5e-59eb1ab99403" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092420Z:94d95a25-975b-43ca-9f5e-59eb1ab99403" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:46:23 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:24:19 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:24:18.1400933Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?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/554cbdfc-f453-4f45-bfc8-09f56272911d?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": [ "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244" ], + "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], "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": [ "279" ], + "x-ms-request-id": [ "647a4ca6-a2b5-491d-8f91-e7bb7743c61e" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "16ba95c9-69ac-4351-9d4f-7e99ccf72274" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092420Z:16ba95c9-69ac-4351-9d4f-7e99ccf72274" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:46:23 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:24:19 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..704b7f55d9a0 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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": [ "8544c40b-194a-4191-b7b8-510f00c4a9b2" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/1110e02d-4e07-4e15-b21d-4790b486439f?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "15bbfc2c-cd6d-4223-a61a-fbaff27b91b4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092421Z:15bbfc2c-cd6d-4223-a61a-fbaff27b91b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:46:24 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:24:21 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf\",\"name\":\"testcluster5arkid/testdatabaseani9hf\",\"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/1110e02d-4e07-4e15-b21d-4790b486439f?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/1110e02d-4e07-4e15-b21d-4790b486439f?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": [ "245", "246" ], + "x-ms-client-request-id": [ "e221da3e-b1b6-4cc6-9928-9d963e76eb47", "e221da3e-b1b6-4cc6-9928-9d963e76eb47" ], "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": [ "278" ], + "x-ms-request-id": [ "9fa9e3f4-2abb-4159-ab0c-a575a0a3565a" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "97db0769-4e7d-4ff0-b78a-d30a1fd7ca9c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092452Z:97db0769-4e7d-4ff0-b78a-d30a1fd7ca9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:46:54 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:24:51 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/1110e02d-4e07-4e15-b21d-4790b486439f\",\"name\":\"1110e02d-4e07-4e15-b21d-4790b486439f\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:24:21.7497668Z\",\"endTime\":\"2020-07-30T09:24:23.8452974Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"ab39d175-ffad-42f2-a037-c38ef17894de\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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": [ "245", "246", "247" ], + "x-ms-client-request-id": [ "e221da3e-b1b6-4cc6-9928-9d963e76eb47", "e221da3e-b1b6-4cc6-9928-9d963e76eb47", "e221da3e-b1b6-4cc6-9928-9d963e76eb47" ], "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": [ "8e3b24dc-29bc-4ffc-8926-6cfa44e0368e" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "887fd240-5c72-44f3-ac0d-6d98b1a8f7cf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092452Z:887fd240-5c72-44f3-ac0d-6d98b1a8f7cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:46:54 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:24:52 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf\",\"name\":\"testcluster5arkid/testdatabaseani9hf\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf?api-version=2020-06-14", + "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\r\n \"databaseName\": \"testdatabaseani9hf\",\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": [ "83af4875-3709-43b1-b486-9252577d4501" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/01684111-984b-4726-951b-4882d77c991d?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "b4f1a7b5-f99f-4444-939f-d7d70eff2615" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092453Z:b4f1a7b5-f99f-4444-939f-d7d70eff2615" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:46:55 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:24:52 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf\",\"name\":\"testfclusterkgb956/testdbconfani9hf\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabaseani9hf\",\"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/01684111-984b-4726-951b-4882d77c991d?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/01684111-984b-4726-951b-4882d77c991d?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": [ "248", "249" ], + "x-ms-client-request-id": [ "94ebdcc5-6fa2-4941-884f-2188eeb5bc28", "94ebdcc5-6fa2-4941-884f-2188eeb5bc28" ], "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": [ "288" ], + "x-ms-request-id": [ "734f15c1-ee47-4365-af38-a518087b77e4" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "7cb6c9c4-f0d9-475d-8604-b1d4c73f9fd8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092523Z:7cb6c9c4-f0d9-475d-8604-b1d4c73f9fd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:47:25 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:25:22 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/01684111-984b-4726-951b-4882d77c991d\",\"name\":\"01684111-984b-4726-951b-4882d77c991d\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:24:53.1640238Z\",\"endTime\":\"2020-07-30T09:24:56.3361207Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"8cbaa400-da7c-4d8c-bd2d-4c393b1b2c2e\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf?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": [ "248", "249", "250" ], + "x-ms-client-request-id": [ "94ebdcc5-6fa2-4941-884f-2188eeb5bc28", "94ebdcc5-6fa2-4941-884f-2188eeb5bc28", "94ebdcc5-6fa2-4941-884f-2188eeb5bc28" ], "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": [ "0ee64527-c897-4f77-be4b-055b87f9874a" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "22b84603-3c41-44fe-90d4-71ae45098fdf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092523Z:22b84603-3c41-44fe-90d4-71ae45098fdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:47:25 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:25:23 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf\",\"name\":\"testfclusterkgb956/testdbconfani9hf\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabaseani9hf\",\"attachedDatabaseNames\":[\"testdatabaseani9hf\"],\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/detachFollowerDatabases?api-version=2020-06-14", + "Content": "{\r\n \"attachedDatabaseConfigurationName\": \"testdbconfani9hf\",\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956\"\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/1675ac0e-2e74-47dc-83d3-80734f461717?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "80e7cf5f-ed7e-49fb-911c-b6f7d02465fe" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/1675ac0e-2e74-47dc-83d3-80734f461717?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "1195" ], + "x-ms-correlation-request-id": [ "71ba9774-04c4-40a3-81c1-8896f04e68e5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092524Z:71ba9774-04c4-40a3-81c1-8896f04e68e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:47:26 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:25:23 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/1675ac0e-2e74-47dc-83d3-80734f461717?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/1675ac0e-2e74-47dc-83d3-80734f461717?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": [ "251", "252" ], + "x-ms-client-request-id": [ "f2879245-98c4-4b71-b539-69e75bf266fd", "f2879245-98c4-4b71-b539-69e75bf266fd" ], "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": [ "287" ], + "x-ms-request-id": [ "9dc0a871-08b3-4ce3-92b5-57d86cf95325" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "e6c55869-bf3f-4803-b43f-38b5d4c2d2ae" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092554Z:e6c55869-bf3f-4803-b43f-38b5d4c2d2ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:47:56 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:25:54 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/1675ac0e-2e74-47dc-83d3-80734f461717\",\"name\":\"1675ac0e-2e74-47dc-83d3-80734f461717\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:25:24.2677755Z\",\"endTime\":\"2020-07-30T09:25:27.9555512Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"a4ab9a94-1535-403a-a428-f00516fb5bb3\",\"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/1675ac0e-2e74-47dc-83d3-80734f461717?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/1675ac0e-2e74-47dc-83d3-80734f461717?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": [ "251", "252", "253" ], + "x-ms-client-request-id": [ "f2879245-98c4-4b71-b539-69e75bf266fd", "f2879245-98c4-4b71-b539-69e75bf266fd", "f2879245-98c4-4b71-b539-69e75bf266fd" ], "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": [ "79186bcb-eb41-4f8f-b220-744122222c7a" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "286" ], + "x-ms-correlation-request-id": [ "4be8439a-4419-492c-9f32-0d8a62ccadeb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092554Z:4be8439a-4419-492c-9f32-0d8a62ccadeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:47:57 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:25:54 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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": [ "254" ], + "x-ms-client-request-id": [ "d6c16298-f68d-4f0a-8cd5-8ee1dc7bd7f2" ], "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/e04cf476-9ca9-4444-89ec-f93ebbba319c?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/e04cf476-9ca9-4444-89ec-f93ebbba319c?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "30a9ee9b-cecd-4ed3-b537-dce98fc72b4e" ], + "x-ms-correlation-request-id": [ "30a9ee9b-cecd-4ed3-b537-dce98fc72b4e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092555Z:30a9ee9b-cecd-4ed3-b537-dce98fc72b4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:47:57 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:25:54 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/e04cf476-9ca9-4444-89ec-f93ebbba319c?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/e04cf476-9ca9-4444-89ec-f93ebbba319c?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": [ "254", "255" ], + "x-ms-client-request-id": [ "d6c16298-f68d-4f0a-8cd5-8ee1dc7bd7f2", "d6c16298-f68d-4f0a-8cd5-8ee1dc7bd7f2" ], "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-correlation-request-id": [ "27e7a4d3-c8ab-48a5-8443-2e63ae68cb2d" ], + "x-ms-request-id": [ "bbe0a836-ad1b-4076-8e68-db347dd61e5f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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-routing-request-id": [ "NORTHEUROPE:20200730T092625Z:27e7a4d3-c8ab-48a5-8443-2e63ae68cb2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:48:27 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:26:24 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/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/e04cf476-9ca9-4444-89ec-f93ebbba319c\",\"name\":\"e04cf476-9ca9-4444-89ec-f93ebbba319c\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:25:55.1487385Z\",\"endTime\":\"2020-07-30T09:25:56.5862172Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"428d58d0-de92-4f7a-b00c-ee393dc600a9\",\"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/e04cf476-9ca9-4444-89ec-f93ebbba319c?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/e04cf476-9ca9-4444-89ec-f93ebbba319c?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": [ "254", "255", "256" ], + "x-ms-client-request-id": [ "d6c16298-f68d-4f0a-8cd5-8ee1dc7bd7f2", "d6c16298-f68d-4f0a-8cd5-8ee1dc7bd7f2", "d6c16298-f68d-4f0a-8cd5-8ee1dc7bd7f2" ], "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": [ "abebded0-4e39-4da9-a56d-c1b58ab1f0e2" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "284" ], + "x-ms-correlation-request-id": [ "c902a84e-552a-43b3-ae1b-4f6688e19535" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092626Z:c902a84e-552a-43b3-ae1b-4f6688e19535" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:48:27 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:26:25 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/New-AzKustoCluster.Recording.json b/src/Kusto/test/New-AzKustoCluster.Recording.json index cc5a3c392aa1..d5985d414eb7 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?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": [ "20088739-d691-412e-807b-8880bcda5504" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "2980a323-66b0-434b-a11e-434333eaed71" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092630Z:2980a323-66b0-434b-a11e-434333eaed71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:48:31 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:26:29 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf\",\"name\":\"testclusterani9hf\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "283" ], + "x-ms-request-id": [ "388c56b4-0f11-494e-a7d3-fc8667ea17e4" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "41e915ab-9a24-4cf1-b5a4-5acb5e024353" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092700Z:41e915ab-9a24-4cf1-b5a4-5acb5e024353" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:49:01 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:27:00 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:26:29.5642538Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "282" ], + "x-ms-request-id": [ "b5e6b79f-8a05-44c4-b401-2cb0af10c76d" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "c03a4d7c-48e9-450b-bfd2-53dfa435da3a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092730Z:c03a4d7c-48e9-450b-bfd2-53dfa435da3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:49:32 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:27:30 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:26:29.5642538Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "281" ], + "x-ms-request-id": [ "0cb41d74-d5f9-459d-a1cc-eb6a4c8f2a57" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "46c4822d-b9a7-47c4-bce4-8ef6509fc5bc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092801Z:46c4822d-b9a7-47c4-bce4-8ef6509fc5bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:50:02 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:28:01 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:26:29.5642538Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "280" ], + "x-ms-request-id": [ "88e6a897-8031-40f7-be76-a748d0fc829c" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "4cc16ea6-9a3d-412d-81e4-243353233c4c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092831Z:4cc16ea6-9a3d-412d-81e4-243353233c4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:50:32 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:28:31 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:26:29.5642538Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "04f59f39-a02b-4eeb-88d4-09d6ae23d09e" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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-correlation-request-id": [ "7d841702-a2b3-413e-adcf-4faefde54f75" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092901Z:7d841702-a2b3-413e-adcf-4faefde54f75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:51:04 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:29:00 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:26:29.5642538Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "278" ], + "x-ms-request-id": [ "6d6fe576-3b07-49c9-ae58-c5038c0c1c55" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "104c6d36-e44f-4c75-9a6b-be7028610590" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092931Z:104c6d36-e44f-4c75-9a6b-be7028610590" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:51:33 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:29:31 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "288" ], + "x-ms-request-id": [ "1043a5c8-90f8-4d54-9f1f-3b61418b56c2" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "44fb8bed-ea30-403d-853e-f8766432eb76" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093002Z:44fb8bed-ea30-403d-853e-f8766432eb76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:52:04 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:30:01 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "287" ], + "x-ms-request-id": [ "9665c56a-d962-489d-8424-e49d11085b7d" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "2709b50f-5ca3-4452-9cef-0026311660b7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093032Z:2709b50f-5ca3-4452-9cef-0026311660b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:52:34 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:30:31 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "286" ], + "x-ms-request-id": [ "15ba48dc-7be9-4b58-bdd5-9876c67ba69e" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "8b3fd71b-028a-4495-85e5-13cd10bfca57" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093102Z:8b3fd71b-028a-4495-85e5-13cd10bfca57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:53:04 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:31:02 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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-correlation-request-id": [ "d8785c94-7fd0-4e44-9461-960ceb79860d" ], + "x-ms-request-id": [ "4fdbe709-86a8-4990-80b6-5b7c8bb85549" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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-routing-request-id": [ "NORTHEUROPE:20200730T093132Z:d8785c94-7fd0-4e44-9461-960ceb79860d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:53:35 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:31:32 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "284" ], + "x-ms-request-id": [ "6b0ead09-45e0-44bd-9d72-1b92f8d1f063" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "8690f8d9-1078-4638-b3b1-61c93927c1db" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093203Z:8690f8d9-1078-4638-b3b1-61c93927c1db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:54:05 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:32:03 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "283" ], + "x-ms-request-id": [ "9f55ea6d-c6f6-443a-a589-6d07bc3a1f44" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "372abaff-acd8-4a16-a19e-b9162b5a7343" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093233Z:372abaff-acd8-4a16-a19e-b9162b5a7343" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:54:35 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:32:33 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "282" ], + "x-ms-request-id": [ "ef40115b-64a3-4243-9bb3-6468468b7037" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "6349684f-7357-4396-9af2-21eaa5e6b2cd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093303Z:6349684f-7357-4396-9af2-21eaa5e6b2cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:55:06 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:33:03 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "281" ], + "x-ms-request-id": [ "97738800-4e0e-4d3f-ab07-f20594ce1661" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "b5853bb1-4604-4c65-b8d8-9e198165d60c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093334Z:b5853bb1-4604-4c65-b8d8-9e198165d60c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:55:37 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:33:33 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "280" ], + "x-ms-request-id": [ "298e4f3f-3ee2-428d-ad41-fedeabc746ed" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "ed27f532-f3bb-4cbe-a5ab-da56dd197c53" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093404Z:ed27f532-f3bb-4cbe-a5ab-da56dd197c53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:56:06 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:34:03 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "279" ], + "x-ms-request-id": [ "378ab97b-63d3-43f1-96d8-f5b5b23a2327" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "bad6ced0-2e9b-40f0-a6ec-1aad66e5233e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093434Z:bad6ced0-2e9b-40f0-a6ec-1aad66e5233e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:56:37 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:34:34 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "ca1664cb-2b0b-4d38-8070-e11e3484c3b8" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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-correlation-request-id": [ "246f8555-ae11-41bb-94e9-41f80da6bbe7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093504Z:246f8555-ae11-41bb-94e9-41f80da6bbe7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:57:07 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:35:04 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "288" ], + "x-ms-request-id": [ "84e8049a-e0b8-4bfd-bec8-78afd6a52186" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "e773b594-3254-4178-be5f-e641bd7b3191" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093535Z:e773b594-3254-4178-be5f-e641bd7b3191" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:57:38 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:35:34 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "287" ], + "x-ms-request-id": [ "fd2b0a85-8646-4e41-82d6-10262b938d78" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "9ab0cb30-c53f-445c-93ce-8d024499b0e2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093605Z:9ab0cb30-c53f-445c-93ce-8d024499b0e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:58:08 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:36:04 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "286" ], + "x-ms-request-id": [ "723a3be5-80ae-4764-9d53-26ef62d4f7ab" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "21f1b63f-4afe-458f-9bff-d98a7f6db1ab" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093635Z:21f1b63f-4afe-458f-9bff-d98a7f6db1ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:58:38 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:36:34 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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-correlation-request-id": [ "02016e71-5423-4510-b299-76638e351246" ], + "x-ms-request-id": [ "2c5f76d6-d48a-4018-82fc-0390676ec9e9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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-routing-request-id": [ "NORTHEUROPE:20200730T093705Z:02016e71-5423-4510-b299-76638e351246" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:59:09 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:37:05 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "284" ], + "x-ms-request-id": [ "80f0bf61-fda4-4d72-b79a-7027e00a3128" ], + "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": [ "394a853a-043f-4a3a-b438-6c705fbe2c75" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093736Z:394a853a-043f-4a3a-b438-6c705fbe2c75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:59:39 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:37:35 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "283" ], + "x-ms-request-id": [ "1e44c5a4-c553-4c25-a6db-a8d7dcfabf33" ], + "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": [ "95ed62fb-7fd7-4adf-b234-7c91301b9533" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093806Z:95ed62fb-7fd7-4adf-b234-7c91301b9533" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:00:09 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:38:06 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281" ], + "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "282" ], + "x-ms-request-id": [ "1fc33979-8004-4272-9fb5-4828d54d200c" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "2f985fdb-3a51-4842-9977-bbdf930a5915" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093836Z:2f985fdb-3a51-4842-9977-bbdf930a5915" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:00:40 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:38:36 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "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": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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": [ "281" ], + "x-ms-request-id": [ "369f8fcc-b3ad-4f22-8924-9743839adf1d" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "f246cb4f-8139-43fe-be49-d72b8b126c5b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093907Z:f246cb4f-8139-43fe-be49-d72b8b126c5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:01:10 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:39:07 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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": [ "257", "258", "259", "260", "261", "262", "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": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], "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,129 @@ "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": [ "5c7af07c-87de-49b9-b925-cf4b5414fd24" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "e5a4f8f1-b088-44bb-bd78-df47de0a10d3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093937Z:e5a4f8f1-b088-44bb-bd78-df47de0a10d3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 09:39:36 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "257", "258", "259", "260", "261", "262", "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": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "289" ], + "x-ms-request-id": [ "0cdce7eb-d8fb-4215-ac49-66e6437674f7" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "fe70f0f1-096a-44cf-b94c-2e0540dfaaf1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094007Z:fe70f0f1-096a-44cf-b94c-2e0540dfaaf1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 09:40:06 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "257", "258", "259", "260", "261", "262", "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": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "bd54e191-f1f3-4780-b137-0a84a4e82fc7" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "5dd8c1f6-a654-4949-b6e2-d3977c577a34" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094038Z:5dd8c1f6-a654-4949-b6e2-d3977c577a34" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 09:40:37 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:40:16.3652451Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + } + }, + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14+30": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "257", "258", "259", "260", "261", "262", "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": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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", "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", "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", "__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": { @@ -1086,31 +1209,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": [ "d8570cef-a414-4aa1-838c-82936b70a833" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "b23d99a4-6bc2-424f-baf3-b563f9d7617d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094038Z:b23d99a4-6bc2-424f-baf3-b563f9d7617d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:01:11 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:40:37 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf\",\"name\":\"testclusterani9hf\",\"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://testclusterani9hf.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterani9hf.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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14+31": { "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?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": [ "287" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "CommandName": [ "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1125,17 +1248,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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "9f533389-0f4d-4821-8c9b-1965731dce28" ], + "x-ms-correlation-request-id": [ "9f533389-0f4d-4821-8c9b-1965731dce28" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094038Z:9f533389-0f4d-4821-8c9b-1965731dce28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:01:11 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:40:38 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1144,14 +1267,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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -1167,32 +1290,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": [ "287" ], + "x-ms-request-id": [ "6dd1d899-cb36-48ce-8d16-1d1306355b13" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "201936e6-4bae-48a0-86be-5347d96cae98" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094109Z:201936e6-4bae-48a0-86be-5347d96cae98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:01:41 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:41:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288", "289" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1208,32 +1331,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-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "8e8cb1c7-9596-48dc-9ceb-cfc894399cc7" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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-correlation-request-id": [ "2c4c18db-8577-4010-aef5-a45cc116bd02" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094139Z:2c4c18db-8577-4010-aef5-a45cc116bd02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:02:12 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:41:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288", "289", "290" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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 +1372,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": [ "285" ], + "x-ms-request-id": [ "c4b6a589-ffab-4ae6-99b1-5239b2f7d822" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "d8892742-3ea7-4363-bec9-47e9e78ad833" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094209Z:d8892742-3ea7-4363-bec9-47e9e78ad833" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:02:42 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:42:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288", "289", "290", "291" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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 +1413,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-correlation-request-id": [ "cc0ccc22-8c4e-43e6-be8d-819c981c787c" ], + "x-ms-request-id": [ "29a7995f-824e-4caa-8e37-dbf2583caabb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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-routing-request-id": [ "NORTHEUROPE:20200730T094239Z:cc0ccc22-8c4e-43e6-be8d-819c981c787c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:03:13 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:42:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288", "289", "290", "291", "292" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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 +1454,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": [ "283" ], + "x-ms-request-id": [ "de893a41-0579-4320-b857-fcfc77914218" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "11268f3a-dc5e-4690-a3b8-c52ea4c53996" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094310Z:11268f3a-dc5e-4690-a3b8-c52ea4c53996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:03:43 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:43:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288", "289", "290", "291", "292", "293" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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 +1495,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": [ "282" ], + "x-ms-request-id": [ "373f0f46-dc9e-4816-aa04-2dfd5624a2d7" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "ee12a88d-6eb5-4bbe-9796-d7a0978930b8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094340Z:ee12a88d-6eb5-4bbe-9796-d7a0978930b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:04:13 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:43:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288", "289", "290", "291", "292", "293", "294" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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 +1536,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": [ "281" ], + "x-ms-request-id": [ "89a1967c-118a-45b8-a46c-9ec959214162" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "d6f95e92-ca53-4852-9f6c-e5a118fc0004" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094411Z:d6f95e92-ca53-4852-9f6c-e5a118fc0004" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:04:44 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:44:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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 +1577,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": [ "280" ], + "x-ms-request-id": [ "4655871a-8f7b-49ea-939b-7e2ad9af72da" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "edc4b40b-1fad-4e26-b30c-083f4fd0987f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094441Z:edc4b40b-1fad-4e26-b30c-083f4fd0987f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:05:14 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:44:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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 +1618,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": [ "289" ], + "x-ms-request-id": [ "1e082223-e48f-4ca0-9b4f-2a670c7d06ba" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "466a54ed-4650-4f39-acd6-9a7e5a4a036e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094511Z:466a54ed-4650-4f39-acd6-9a7e5a4a036e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:05:44 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:45:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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 +1659,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": [ "288" ], + "x-ms-request-id": [ "0675e2f6-be4d-4240-af83-8aae3e77b6cd" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "2754f8fa-23a0-4eae-b5ea-a42291f6768e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094541Z:2754f8fa-23a0-4eae-b5ea-a42291f6768e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:06:15 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:45:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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 +1700,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": [ "287" ], + "x-ms-request-id": [ "7b7fed6d-28a5-4be5-867a-9757b42e0dae" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "9c7f7f0a-e3de-48fa-ac70-bda6fa4481f1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094612Z:9c7f7f0a-e3de-48fa-ac70-bda6fa4481f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:06:45 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:46:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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 +1741,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": [ "286" ], + "x-ms-request-id": [ "0bdd0e3f-51b0-4d56-8f0c-c033d1fcd4a8" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "d36d3593-e154-4771-9837-231ed91d3e13" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094642Z:d36d3593-e154-4771-9837-231ed91d3e13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:07:15 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:46:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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 +1782,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": [ "285" ], + "x-ms-request-id": [ "8785eadd-010f-4559-b798-1eb02b4f26c3" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "80c05bcb-95e5-4383-a67c-745e293dcc31" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094712Z:80c05bcb-95e5-4383-a67c-745e293dcc31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:07:45 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:47:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300", "301" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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 +1823,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-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "541924e0-8254-4047-b507-c8cbcdce35e5" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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-correlation-request-id": [ "638e3bdf-de4d-4e45-b551-30c50d98cde6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094742Z:638e3bdf-de4d-4e45-b551-30c50d98cde6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:08:16 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:47:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300", "301", "302" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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 +1864,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-correlation-request-id": [ "2062b937-cc5e-4263-b9e3-ffc890ad4843" ], + "x-ms-request-id": [ "93eb05d2-aaff-45f5-8ef6-d6ded6d058d0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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-routing-request-id": [ "NORTHEUROPE:20200730T094813Z:2062b937-cc5e-4263-b9e3-ffc890ad4843" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:08:47 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:48:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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 +1905,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": [ "282" ], + "x-ms-request-id": [ "08103863-4f08-4179-b094-6f1470a25887" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "f113f1eb-6604-46d9-9ddf-d8cfc99e60a9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094843Z:f113f1eb-6604-46d9-9ddf-d8cfc99e60a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:09:16 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:48:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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 +1946,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": [ "281" ], + "x-ms-request-id": [ "16aedab7-f0d5-400e-b63f-5b14fe9e6103" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "ac705165-81d4-4fff-a6e0-ef5a822a4223" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094913Z:ac705165-81d4-4fff-a6e0-ef5a822a4223" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:09:47 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:49:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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+46": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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", "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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304", "305" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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" ], @@ -1864,32 +1987,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], + "x-ms-request-id": [ "51714f7b-05e9-4465-80d2-a0261bac5eaa" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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" ], + "x-ms-correlation-request-id": [ "5c323fac-63e5-4478-8f2b-1be53dac0e95" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095000Z:5c323fac-63e5-4478-8f2b-1be53dac0e95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:10:18 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:50:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "491" ], "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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+47": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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", "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" ], + "x-ms-unique-id": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304", "305", "306" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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" ], @@ -1905,32 +2028,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "b5288ce3-c973-4514-b058-809a55ba6e1c" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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" ], + "x-ms-correlation-request-id": [ "b51b112b-e975-45d5-8d4a-92c97c0fc9ed" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095034Z:b51b112b-e975-45d5-8d4a-92c97c0fc9ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:10:49 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:50:33 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/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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:50:15.4865857Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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+48": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14\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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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", "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" ], + "x-ms-unique-id": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304", "305", "306", "307" ], + "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], "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" ], @@ -1945,138 +2068,15 @@ "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-ms-request-id": [ "34be4d8e-2af2-4f46-a248-0108c5c00df0" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-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-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-correlation-request-id": [ "8f4d55a1-1e5a-4e6c-8fe8-795e12e3099c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095034Z:8f4d55a1-1e5a-4e6c-8fe8-795e12e3099c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:12:20 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:50:33 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/New-AzKustoClusterPrincipalAssignment.Recording.json b/src/Kusto/test/New-AzKustoClusterPrincipalAssignment.Recording.json index 09700cc15d0a..ece39034ae58 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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": [ "5cc7e2aa-a432-4e69-a885-c533cd3e8756" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e846520-875c-43d0-96e5-f7286ee00848?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "b46a764b-88da-44a5-b394-db2f53f766d7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095035Z:b46a764b-88da-44a5-b394-db2f53f766d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:12:22 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:50:34 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/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/2e846520-875c-43d0-96e5-f7286ee00848?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/2e846520-875c-43d0-96e5-f7286ee00848?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": [ "308", "309" ], + "x-ms-client-request-id": [ "38929b08-87a5-40ff-a541-7136072c5512", "38929b08-87a5-40ff-a541-7136072c5512" ], "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-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "08840d5f-0b37-4716-80fe-785e299f9577" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "9455ef9d-4b50-448a-a0a4-6881d61a7c28" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095105Z:9455ef9d-4b50-448a-a0a4-6881d61a7c28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:12:52 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:51:05 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/2e846520-875c-43d0-96e5-f7286ee00848\",\"name\":\"2e846520-875c-43d0-96e5-f7286ee00848\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:50:35.2983315Z\",\"endTime\":\"2020-07-30T09:50:37.2672254Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsAdd\",\"RootActivityId\":\"c8c4eec5-1099-4791-a893-4a50b31f3cdd\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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": [ "308", "309", "310" ], + "x-ms-client-request-id": [ "38929b08-87a5-40ff-a541-7136072c5512", "38929b08-87a5-40ff-a541-7136072c5512", "38929b08-87a5-40ff-a541-7136072c5512" ], "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": [ "01ca0e06-74cf-4cbc-87fc-607a523a8e2b" ], + "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": [ "062ad064-6078-4249-8654-a1e35a9cf452" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095106Z:062ad064-6078-4249-8654-a1e35a9cf452" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:12:53 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:51:06 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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": [ "311" ], + "x-ms-client-request-id": [ "d62d2dd8-b8b8-4253-b8dd-d278359e0c47" ], "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/0a59d4eb-52a5-4579-bd60-8988684b7e61?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/0a59d4eb-52a5-4579-bd60-8988684b7e61?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "d3768e33-8c4e-45d0-9547-37030b905c25" ], + "x-ms-correlation-request-id": [ "d3768e33-8c4e-45d0-9547-37030b905c25" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095106Z:d3768e33-8c4e-45d0-9547-37030b905c25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:12:54 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:51:06 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/0a59d4eb-52a5-4579-bd60-8988684b7e61?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/0a59d4eb-52a5-4579-bd60-8988684b7e61?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": [ "311", "312" ], + "x-ms-client-request-id": [ "d62d2dd8-b8b8-4253-b8dd-d278359e0c47", "d62d2dd8-b8b8-4253-b8dd-d278359e0c47" ], "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-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-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "d89ef632-1b05-4266-a701-e85c4148a23a" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "bee385a4-7cd3-4682-9a45-319edde0f37a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095136Z:bee385a4-7cd3-4682-9a45-319edde0f37a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:13:23 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:51:36 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/0a59d4eb-52a5-4579-bd60-8988684b7e61\",\"name\":\"0a59d4eb-52a5-4579-bd60-8988684b7e61\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:51:06.5844523Z\",\"endTime\":\"2020-07-30T09:51:08.7877268Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsDrop\",\"RootActivityId\":\"38d4aef8-0cb9-4219-a207-230b759c81c2\",\"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/0a59d4eb-52a5-4579-bd60-8988684b7e61?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/0a59d4eb-52a5-4579-bd60-8988684b7e61?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": [ "311", "312", "313" ], + "x-ms-client-request-id": [ "d62d2dd8-b8b8-4253-b8dd-d278359e0c47", "d62d2dd8-b8b8-4253-b8dd-d278359e0c47", "d62d2dd8-b8b8-4253-b8dd-d278359e0c47" ], "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": [ "f15cc4fc-52cd-4fe8-9572-6f8ef6f589f7" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-correlation-request-id": [ "387eb4d4-e3ca-4f85-997d-47d5ce10e825" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095137Z:387eb4d4-e3ca-4f85-997d-47d5ce10e825" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:13:24 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:51:36 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/New-AzKustoDataConnection.Recording.json b/src/Kusto/test/New-AzKustoDataConnection.Recording.json index e57102dd4ca9..842057f9b4b6 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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": [ "332" ], + "x-ms-client-request-id": [ "33a1d052-9841-42b7-9426-9ab73d6f87a4" ], "CommandName": [ "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -17,114 +17,31 @@ } }, "Response": { - "StatusCode": 202, + "StatusCode": 204, "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" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "3e8cb544-96fd-4909-a096-fbb975a70313" ], + "x-ms-correlation-request-id": [ "3e8cb544-96fd-4909-a096-fbb975a70313" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095446Z:3e8cb544-96fd-4909-a096-fbb975a70313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:16:31 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:54:45 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "311", "312" ], - "x-ms-client-request-id": [ "853956ba-4b6c-4cb3-aa75-4e455a48a3a9", "853956ba-4b6c-4cb3-aa75-4e455a48a3a9" ], - "CommandName": [ "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection" ], - "FullCommandName": [ "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete" ], - "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": [ "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-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121703Z:9a9b6697-a59c-4df6-99ec-91c17d03fcc8" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:17: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/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\"}}" - } - }, - "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": { - "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", - "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" ], - "CommandName": [ "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection" ], - "FullCommandName": [ "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_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": { - } - }, - "Response": { - "StatusCode": 200, - "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-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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:17:03 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14+2": { "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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 \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubns5arkid/eventhubs/eventhub5arkid\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { @@ -138,33 +55,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": [ "d7e77a40-a27f-4b5f-b6bc-d570448d9fda" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8ddc582c-18b6-470d-8684-a1b17ec87d45?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "0971abef-549d-417a-a1e3-975a99c1b46a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095447Z:0971abef-549d-417a-a1e3-975a99c1b46a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:17:04 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:54:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "755" ], "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid/testdataconnection5arkid\",\"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/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubns5arkid/eventhubs/eventhub5arkid\",\"mappingRuleName\":\"EventsMapping\",\"tableName\":\"Events\",\"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/8ddc582c-18b6-470d-8684-a1b17ec87d45?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/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/8ddc582c-18b6-470d-8684-a1b17ec87d45?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": [ "333", "334" ], + "x-ms-client-request-id": [ "4cf0c831-743c-4902-8c25-109065c1c6df", "4cf0c831-743c-4902-8c25-109065c1c6df" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection" ], "FullCommandName": [ "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -180,32 +97,32 @@ "Cache-Control": [ "no-cache" ], "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-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "eaa7510f-452a-4c5b-9fec-3a1c3b7de087" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "9e0904d2-2c40-488f-af30-497ee23bd055" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095518Z:9e0904d2-2c40-488f-af30-497ee23bd055" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:17:33 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:55:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "480" ], + "Content-Length": [ "621" ], "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/8ddc582c-18b6-470d-8684-a1b17ec87d45\",\"name\":\"8ddc582c-18b6-470d-8684-a1b17ec87d45\",\"status\":\"Failed\",\"startTime\":\"2020-07-30T09:54:47.6418353Z\",\"endTime\":\"2020-07-30T09:54:50.2375264Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"e22a5d21-13a0-4f39-92ef-99cec931fcc6\",\"provisioningState\":\"Failed\",\"OperationState\":\"BadInput\"},\"error\":{\"code\":\"EventHubValidationErorFound\",\"message\":\"[BadRequest] Validation Errors found: table does not exist\"}}" } }, - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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": [ "333", "334", "335" ], + "x-ms-client-request-id": [ "4cf0c831-743c-4902-8c25-109065c1c6df", "4cf0c831-743c-4902-8c25-109065c1c6df", "4cf0c831-743c-4902-8c25-109065c1c6df" ], "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" ], @@ -216,38 +133,36 @@ } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "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": [ "41bba4c8-5c69-4bd6-b301-dec4e7eabaae" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-correlation-request-id": [ "fbe68276-a325-4d64-82d1-10d9d828c6fe" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095518Z:fbe68276-a325-4d64-82d1-10d9d828c6fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:17:34 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:55:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "793" ], + "Content-Length": [ "300" ], "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": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid\u0027 is not found.\"}}" } }, - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?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": [ "336" ], + "x-ms-client-request-id": [ "ab3c7d88-9dae-40c4-9fe0-6bb0d572f730" ], "CommandName": [ "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -258,114 +173,31 @@ } }, "Response": { - "StatusCode": 202, + "StatusCode": 204, "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" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:17:34 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "317", "318" ], - "x-ms-client-request-id": [ "3da49bbb-c8ec-4de7-8fc0-038af2f2d906", "3da49bbb-c8ec-4de7-8fc0-038af2f2d906" ], - "CommandName": [ "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection" ], - "FullCommandName": [ "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete" ], - "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": [ "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-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121805Z:51e20189-a4d1-4846-8171-87b4ce17da2d" ], + "x-ms-request-id": [ "42d009b2-b51f-40e4-8e00-57c88517c7b0" ], + "x-ms-correlation-request-id": [ "42d009b2-b51f-40e4-8e00-57c88517c7b0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095519Z:42d009b2-b51f-40e4-8e00-57c88517c7b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:18:04 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:55:18 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/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\"}}" - } - }, - "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": { - "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", - "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" ], - "CommandName": [ "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection" ], - "FullCommandName": [ "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_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": { - } - }, - "Response": { - "StatusCode": 200, - "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-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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:18:05 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?api-version=2020-06-14+2": { "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?api-version=2020-06-14", + "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/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubnsgridkgb956/eventhubs/eventgridkgb956\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Storage/storageAccounts/storage5arkid\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { @@ -379,33 +211,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": [ "1acf7d28-cbb9-42e1-87aa-394ad45a2a9f" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/abcbd330-a7f7-4fe0-9d67-9ec80ad6c339?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "7ca12043-ffe6-4f0f-ae6b-70550483f28c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095520Z:7ca12043-ffe6-4f0f-ae6b-70550483f28c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:18:06 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:55:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "912" ], "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg\",\"name\":\"testcluster5arkid/testdatabase5arkid/testdataconnection5arkidg\",\"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/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubnsgridkgb956/eventhubs/eventgridkgb956\",\"mappingRuleName\":\"EventsMapping\",\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Storage/storageAccounts/storage5arkid\",\"tableName\":\"Events\",\"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/abcbd330-a7f7-4fe0-9d67-9ec80ad6c339?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/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/abcbd330-a7f7-4fe0-9d67-9ec80ad6c339?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": [ "337", "338" ], + "x-ms-client-request-id": [ "c977e19d-0b7b-4708-9c91-af5386465c26", "c977e19d-0b7b-4708-9c91-af5386465c26" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection" ], "FullCommandName": [ "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -421,32 +253,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": [ "283" ], + "x-ms-request-id": [ "65cb362f-1628-4638-baea-26888287014e" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "f1d17264-ec6e-47ca-a346-9bc874c6085e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095550Z:f1d17264-ec6e-47ca-a346-9bc874c6085e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:18:36 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:55:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "485" ], + "Content-Length": [ "629" ], "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/abcbd330-a7f7-4fe0-9d67-9ec80ad6c339\",\"name\":\"abcbd330-a7f7-4fe0-9d67-9ec80ad6c339\",\"status\":\"Failed\",\"startTime\":\"2020-07-30T09:55:20.4613401Z\",\"endTime\":\"2020-07-30T09:55:22.1020629Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventGridIngestionSourceAdd\",\"RootActivityId\":\"9a3b9ad2-aa8b-43d0-ab06-2570dc4d6883\",\"provisioningState\":\"Failed\",\"OperationState\":\"BadInput\"},\"error\":{\"code\":\"EventHubValidationErorFound\",\"message\":\"[BadRequest] Validation Errors found: table does not exist\"}}" } }, - "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/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?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/57ad40ea-fc55-4d46-af96-3fad129d5108?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?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": [ "337", "338", "339" ], + "x-ms-client-request-id": [ "c977e19d-0b7b-4708-9c91-af5386465c26", "c977e19d-0b7b-4708-9c91-af5386465c26", "c977e19d-0b7b-4708-9c91-af5386465c26" ], "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" ], @@ -457,120 +289,36 @@ } }, "Response": { - "StatusCode": 200, - "Headers": { - "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-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121907Z:3b8a81cb-0ab8-4dc8-984e-bd5582e4281d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:19:06 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "485" ], - "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\"}}" - } - }, - "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": { - "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", - "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" ], - "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" ], - "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, + "StatusCode": 404, "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-ms-request-id": [ "f24477f8-9bcc-4aae-b4cd-fd8addc27112" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "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-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": [ "fce50125-486a-4ddd-b88b-450df5fcf252" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095551Z:fce50125-486a-4ddd-b88b-450df5fcf252" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:19:40 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:55:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "923" ], + "Content-Length": [ "301" ], "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": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg\u0027 is not found.\"}}" } }, - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?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": [ "340" ], + "x-ms-client-request-id": [ "86a5d098-d7c6-411f-a1e2-328381eb316e" ], "CommandName": [ "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -581,114 +329,31 @@ } }, "Response": { - "StatusCode": 202, + "StatusCode": 204, "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" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "05909745-330a-454c-9a83-42554fbc3cb8" ], + "x-ms-correlation-request-id": [ "05909745-330a-454c-9a83-42554fbc3cb8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095552Z:05909745-330a-454c-9a83-42554fbc3cb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:19:40 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:55:51 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "325", "326" ], - "x-ms-client-request-id": [ "3797d005-5013-4e2e-a121-123cc3a8d582", "3797d005-5013-4e2e-a121-123cc3a8d582" ], - "CommandName": [ "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection" ], - "FullCommandName": [ "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete" ], - "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-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-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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:20:10 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/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\"}}" - } - }, - "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": { - "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", - "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" ], - "CommandName": [ "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection" ], - "FullCommandName": [ "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_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": { - } - }, - "Response": { - "StatusCode": 200, - "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-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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:20:10 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?api-version=2020-06-14+2": { "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?api-version=2020-06-14", + "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/testgroup5arkid/providers/Microsoft.Devices/IotHubs/iothub5arkid\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"sharedAccessPolicyName\": \"registryRead\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { @@ -702,33 +367,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": [ "5f34fcf5-5bf9-469c-981c-b2b25d064bc1" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7b70abd5-a568-44e2-aa87-0dd9d307f81e?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "42cbc4e2-f442-4735-95fb-a8572989d27a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095553Z:42cbc4e2-f442-4735-95fb-a8572989d27a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:20:11 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:55:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "739" ], "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh\",\"name\":\"testcluster5arkid/testdatabase5arkid/testdataconnection5arkidh\",\"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/testgroup5arkid/providers/Microsoft.Devices/IotHubs/iothub5arkid\",\"mappingRuleName\":\"EventsMapping\",\"sharedAccessPolicyName\":\"registryRead\",\"tableName\":\"Events\",\"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/7b70abd5-a568-44e2-aa87-0dd9d307f81e?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/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/7b70abd5-a568-44e2-aa87-0dd9d307f81e?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": [ "341", "342" ], + "x-ms-client-request-id": [ "d7a353fb-4ebe-4d47-8d08-355242e54f09", "d7a353fb-4ebe-4d47-8d08-355242e54f09" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection" ], "FullCommandName": [ "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -744,32 +409,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": [ "0892b589-6bcc-4eb7-ad0b-5ff55f523e21" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "2685f4c3-2fff-4768-b1e1-be51bc59fa5e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095623Z:2685f4c3-2fff-4768-b1e1-be51bc59fa5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:20:41 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:56:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "479" ], + "Content-Length": [ "561" ], "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/7b70abd5-a568-44e2-aa87-0dd9d307f81e\",\"name\":\"7b70abd5-a568-44e2-aa87-0dd9d307f81e\",\"status\":\"Failed\",\"startTime\":\"2020-07-30T09:55:53.3388256Z\",\"endTime\":\"2020-07-30T09:55:53.4482136Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"8a0d91bb-b615-4f7f-91cc-585d9e85977c\",\"provisioningState\":\"Failed\",\"OperationState\":\"Failed\"},\"error\":{\"code\":\"Failed\",\"message\":\"Internal Server Error\"}}" } }, - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?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": [ "341", "342", "343" ], + "x-ms-client-request-id": [ "d7a353fb-4ebe-4d47-8d08-355242e54f09", "d7a353fb-4ebe-4d47-8d08-355242e54f09", "d7a353fb-4ebe-4d47-8d08-355242e54f09" ], "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" ], @@ -780,28 +445,26 @@ } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "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": [ "a382934c-2b81-4cbd-bd39-2525a5dcfa78" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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-ratelimit-remaining-subscription-resource-requests": [ "297" ], + "x-ms-correlation-request-id": [ "69ba8e13-fe00-4d07-bae7-8431f2090c6b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095624Z:69ba8e13-fe00-4d07-bae7-8431f2090c6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:20:42 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:56:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "777" ], + "Content-Length": [ "301" ], "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": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh\u0027 is not found.\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/New-AzKustoDatabase.Recording.json b/src/Kusto/test/New-AzKustoDatabase.Recording.json index 62df0e6f290d..cbe55d3ebf4d 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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": [ "c074df42-cffd-4097-a26a-048c0caf252e" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/88ca1942-b61a-47a8-ab3a-3b607b749e89?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": [ "23064e84-2eff-4c1b-b55d-a2281a4e5c4d" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121325Z:23064e84-2eff-4c1b-b55d-a2281a4e5c4d" ], + "x-ms-correlation-request-id": [ "257466eb-d1cd-4a73-8bdf-c4426dff9fbe" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095138Z:257466eb-d1cd-4a73-8bdf-c4426dff9fbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:13:24 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:51:37 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf\",\"name\":\"testcluster5arkid/testdatabaseani9hf\",\"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/88ca1942-b61a-47a8-ab3a-3b607b749e89?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/88ca1942-b61a-47a8-ab3a-3b607b749e89?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": [ "314", "315" ], + "x-ms-client-request-id": [ "c3d8e85f-c2d3-44ce-aced-354f70137e57", "c3d8e85f-c2d3-44ce-aced-354f70137e57" ], "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-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "da592509-20a3-4a79-8600-27d0b1ccd2b0" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "3c3d6267-1fee-4491-a842-b40616f19940" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095208Z:3c3d6267-1fee-4491-a842-b40616f19940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:13:55 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:52:07 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/88ca1942-b61a-47a8-ab3a-3b607b749e89\",\"name\":\"88ca1942-b61a-47a8-ab3a-3b607b749e89\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:51:38.0455807Z\",\"endTime\":\"2020-07-30T09:51:40.3113747Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"ef0579a6-3942-4e51-a021-25286a03fa9b\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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": [ "314", "315", "316" ], + "x-ms-client-request-id": [ "c3d8e85f-c2d3-44ce-aced-354f70137e57", "c3d8e85f-c2d3-44ce-aced-354f70137e57", "c3d8e85f-c2d3-44ce-aced-354f70137e57" ], "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": [ "3099c3fd-2544-4633-92be-f2ff6bee8db4" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "0262d6c2-44f0-41fe-9f5e-974cc7ee5513" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095208Z:0262d6c2-44f0-41fe-9f5e-974cc7ee5513" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:13:56 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:52:07 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf\",\"name\":\"testcluster5arkid/testdatabaseani9hf\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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": [ "317" ], + "x-ms-client-request-id": [ "29165b2a-edf9-4c0e-a11b-176fa3b5f398" ], "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/8d3c742e-e532-44c7-ae21-3c8e630ff0ad?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/8d3c742e-e532-44c7-ae21-3c8e630ff0ad?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "03b5a18d-ec3b-4a01-bc1b-30d6803d6db7" ], + "x-ms-correlation-request-id": [ "03b5a18d-ec3b-4a01-bc1b-30d6803d6db7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095209Z:03b5a18d-ec3b-4a01-bc1b-30d6803d6db7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:13:56 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:52:08 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/8d3c742e-e532-44c7-ae21-3c8e630ff0ad?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/8d3c742e-e532-44c7-ae21-3c8e630ff0ad?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": [ "317", "318" ], + "x-ms-client-request-id": [ "29165b2a-edf9-4c0e-a11b-176fa3b5f398", "29165b2a-edf9-4c0e-a11b-176fa3b5f398" ], "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": [ "283" ], + "x-ms-request-id": [ "eb1b5a6e-17e0-4be7-b0dd-40a14367d4f0" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "b6631700-21e2-4b95-8636-5340e5d7e527" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095239Z:b6631700-21e2-4b95-8636-5340e5d7e527" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:14:26 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:52: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/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/8d3c742e-e532-44c7-ae21-3c8e630ff0ad\",\"name\":\"8d3c742e-e532-44c7-ae21-3c8e630ff0ad\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:52:09.2536575Z\",\"endTime\":\"2020-07-30T09:52:10.8475329Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"e5e72f85-94d1-483a-960f-9e472e28613f\",\"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/8d3c742e-e532-44c7-ae21-3c8e630ff0ad?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/8d3c742e-e532-44c7-ae21-3c8e630ff0ad?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": [ "317", "318", "319" ], + "x-ms-client-request-id": [ "29165b2a-edf9-4c0e-a11b-176fa3b5f398", "29165b2a-edf9-4c0e-a11b-176fa3b5f398", "29165b2a-edf9-4c0e-a11b-176fa3b5f398" ], "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": [ "4545c582-fc57-4878-9c2f-eba4efd65daf" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "282" ], + "x-ms-correlation-request-id": [ "0ca2cf63-8b23-4d57-a0ea-2c368c111585" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095239Z:0ca2cf63-8b23-4d57-a0ea-2c368c111585" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:14:26 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:52:39 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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": [ "3455ee07-68d1-40c0-bbb0-8b77c3b35cea" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d85b0b81-cf10-4415-ae66-31d364a003c0?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "055f91b8-3a8c-40b9-a638-b25f8e8b8ca4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095240Z:055f91b8-3a8c-40b9-a638-b25f8e8b8ca4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:14:27 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:52:39 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj\",\"name\":\"testcluster5arkid/testdatabasev8aetj\",\"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/d85b0b81-cf10-4415-ae66-31d364a003c0?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/d85b0b81-cf10-4415-ae66-31d364a003c0?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": [ "320", "321" ], + "x-ms-client-request-id": [ "f45bdd71-60b6-4164-b5a1-222ed38e2634", "f45bdd71-60b6-4164-b5a1-222ed38e2634" ], "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": [ "281" ], + "x-ms-request-id": [ "907f4002-60c2-4aa1-8202-a421327a01f1" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "f7b835d7-25a7-4f89-aa22-f485df3302cc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095310Z:f7b835d7-25a7-4f89-aa22-f485df3302cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:14:57 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:53:10 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/d85b0b81-cf10-4415-ae66-31d364a003c0\",\"name\":\"d85b0b81-cf10-4415-ae66-31d364a003c0\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:52:40.3267987Z\",\"endTime\":\"2020-07-30T09:52:42.3739542Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"061e544c-c86f-4761-8dd1-483f092eeade\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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": [ "320", "321", "322" ], + "x-ms-client-request-id": [ "f45bdd71-60b6-4164-b5a1-222ed38e2634", "f45bdd71-60b6-4164-b5a1-222ed38e2634", "f45bdd71-60b6-4164-b5a1-222ed38e2634" ], "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": [ "dd030117-1a3a-40ba-95a6-b032fa0d0acc" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "3040c967-f2d5-4b98-affd-9e606d0bff4c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095311Z:3040c967-f2d5-4b98-affd-9e606d0bff4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:14:57 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:53:11 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj\",\"name\":\"testcluster5arkid/testdatabasev8aetj\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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": [ "323" ], + "x-ms-client-request-id": [ "efd49044-63b5-4851-a4b8-126548569970" ], "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/3759a9e2-e7c9-46fd-b824-f26b34aa4c83?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/3759a9e2-e7c9-46fd-b824-f26b34aa4c83?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": [ "edac2aaf-043c-42db-a26f-8064a8177af7" ], + "x-ms-correlation-request-id": [ "edac2aaf-043c-42db-a26f-8064a8177af7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095311Z:edac2aaf-043c-42db-a26f-8064a8177af7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:14:58 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:53:11 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/3759a9e2-e7c9-46fd-b824-f26b34aa4c83?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/3759a9e2-e7c9-46fd-b824-f26b34aa4c83?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": [ "323", "324" ], + "x-ms-client-request-id": [ "efd49044-63b5-4851-a4b8-126548569970", "efd49044-63b5-4851-a4b8-126548569970" ], "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-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-correlation-request-id": [ "83910cb5-eb90-4770-8252-6919a958ed69" ], + "x-ms-request-id": [ "063c2ea4-6945-4618-94ad-22e2efc769de" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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-routing-request-id": [ "NORTHEUROPE:20200730T095341Z:83910cb5-eb90-4770-8252-6919a958ed69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:15:29 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:53:41 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/3759a9e2-e7c9-46fd-b824-f26b34aa4c83\",\"name\":\"3759a9e2-e7c9-46fd-b824-f26b34aa4c83\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:53:11.443531Z\",\"endTime\":\"2020-07-30T09:53:16.9284094Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"4d6d6df7-187f-4c56-a194-6730392b8979\",\"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/3759a9e2-e7c9-46fd-b824-f26b34aa4c83?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/3759a9e2-e7c9-46fd-b824-f26b34aa4c83?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": [ "323", "324", "325" ], + "x-ms-client-request-id": [ "efd49044-63b5-4851-a4b8-126548569970", "efd49044-63b5-4851-a4b8-126548569970", "efd49044-63b5-4851-a4b8-126548569970" ], "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": [ "0b410e00-57ca-41ae-814d-3d31e2fc6382" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-correlation-request-id": [ "025dcf0d-db3c-40da-b583-4459ff2eacb3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095342Z:025dcf0d-db3c-40da-b583-4459ff2eacb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:15:29 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:53:41 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/New-AzKustoDatabasePrincipalAssignment.Recording.json b/src/Kusto/test/New-AzKustoDatabasePrincipalAssignment.Recording.json index 64f6a02b3176..6c68ed98a282 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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": [ "2aa4f93e-2c16-414f-a2e5-e510a2a393a0" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ffe31575-d77a-48a1-b6f1-65fe4a5a88e1?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "5be8ae3d-fbad-4ce8-87f2-606dabe57282" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095343Z:5be8ae3d-fbad-4ce8-87f2-606dabe57282" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:15:30 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:53:42 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/testdatabase5arkid/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/ffe31575-d77a-48a1-b6f1-65fe4a5a88e1?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/ffe31575-d77a-48a1-b6f1-65fe4a5a88e1?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": [ "326", "327" ], + "x-ms-client-request-id": [ "b22a848b-68ca-4813-a127-e336069609cd", "b22a848b-68ca-4813-a127-e336069609cd" ], "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-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": [ "278" ], + "x-ms-request-id": [ "0b208c7c-e598-4573-a1a8-1e6b18a167af" ], + "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-correlation-request-id": [ "8ec32daf-12e2-4512-abef-df5f8e616774" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095413Z:8ec32daf-12e2-4512-abef-df5f8e616774" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:15:59 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:54:13 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/ffe31575-d77a-48a1-b6f1-65fe4a5a88e1\",\"name\":\"ffe31575-d77a-48a1-b6f1-65fe4a5a88e1\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:53:43.4622032Z\",\"endTime\":\"2020-07-30T09:53:43.6185123Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseAddPrincipals\",\"RootActivityId\":\"7414b37e-eefd-4cac-8d3d-4f12f2b59a7c\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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": [ "326", "327", "328" ], + "x-ms-client-request-id": [ "b22a848b-68ca-4813-a127-e336069609cd", "b22a848b-68ca-4813-a127-e336069609cd", "b22a848b-68ca-4813-a127-e336069609cd" ], "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": [ "bb659897-5dd7-4f3b-8b24-bf9f8800bca7" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "2e598048-bd70-44fd-b5a1-5a451179681e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095414Z:2e598048-bd70-44fd-b5a1-5a451179681e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:16:00 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:54:14 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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": [ "329" ], + "x-ms-client-request-id": [ "50ea84d8-9c02-48e3-a077-7ef432530ff0" ], "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/ed2edfb6-535f-4d6c-a8a8-ce2d151ed3a1?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/ed2edfb6-535f-4d6c-a8a8-ce2d151ed3a1?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "aa98a532-b9a4-49ee-8746-f6fef6f853ab" ], + "x-ms-correlation-request-id": [ "aa98a532-b9a4-49ee-8746-f6fef6f853ab" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095414Z:aa98a532-b9a4-49ee-8746-f6fef6f853ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:16:01 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:54:14 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/ed2edfb6-535f-4d6c-a8a8-ce2d151ed3a1?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/ed2edfb6-535f-4d6c-a8a8-ce2d151ed3a1?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": [ "329", "330" ], + "x-ms-client-request-id": [ "50ea84d8-9c02-48e3-a077-7ef432530ff0", "50ea84d8-9c02-48e3-a077-7ef432530ff0" ], "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-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-ratelimit-remaining-subscription-resource-requests": [ "277" ], + "x-ms-request-id": [ "f7928541-980a-4d4b-a0a4-fbbbabc0bc3c" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "46da1698-3e7d-4bcc-9573-d277fe89ecc6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095445Z:46da1698-3e7d-4bcc-9573-d277fe89ecc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:16:30 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:54:44 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/ed2edfb6-535f-4d6c-a8a8-ce2d151ed3a1\",\"name\":\"ed2edfb6-535f-4d6c-a8a8-ce2d151ed3a1\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:54:14.8263948Z\",\"endTime\":\"2020-07-30T09:54:14.9358214Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDropPrincipals\",\"RootActivityId\":\"a23ccd6d-5a92-40e7-8366-8d9967078106\",\"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/ed2edfb6-535f-4d6c-a8a8-ce2d151ed3a1?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/ed2edfb6-535f-4d6c-a8a8-ce2d151ed3a1?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": [ "329", "330", "331" ], + "x-ms-client-request-id": [ "50ea84d8-9c02-48e3-a077-7ef432530ff0", "50ea84d8-9c02-48e3-a077-7ef432530ff0", "50ea84d8-9c02-48e3-a077-7ef432530ff0" ], "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": [ "ea9eb250-0b80-4611-b80d-461395af9e70" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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-ratelimit-remaining-subscription-resource-requests": [ "276" ], + "x-ms-correlation-request-id": [ "e928fef4-a2f7-4b9d-91fc-b6d80af90a26" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095445Z:e928fef4-a2f7-4b9d-91fc-b6d80af90a26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:16:31 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:54:44 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Remove-AzKustoAttachedDatabaseConfiguration.Recording.json b/src/Kusto/test/Remove-AzKustoAttachedDatabaseConfiguration.Recording.json index 96e68d4c9de0..a7beba124d13 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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": [ "d09016c3-dc1a-47a3-b1bc-d59871ad4b45" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80376ddb-9278-455a-b2c2-454e5748480f?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "15160a82-7319-4e26-9e12-9cd4d0f90088" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095625Z:15160a82-7319-4e26-9e12-9cd4d0f90088" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:20:43 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:56: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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj\",\"name\":\"testcluster5arkid/testdatabasev8aetj\",\"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/80376ddb-9278-455a-b2c2-454e5748480f?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/80376ddb-9278-455a-b2c2-454e5748480f?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": [ "344", "345" ], + "x-ms-client-request-id": [ "a7a66eeb-a019-481a-a5e8-6129389d19b6", "a7a66eeb-a019-481a-a5e8-6129389d19b6" ], "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-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "9fd9e021-4ca9-496d-b155-12841aaf07cc" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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-correlation-request-id": [ "6211e8b3-f75c-4731-bfe8-e6347a93ab41" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095659Z:6211e8b3-f75c-4731-bfe8-e6347a93ab41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:21:14 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:56:59 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/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/80376ddb-9278-455a-b2c2-454e5748480f\",\"name\":\"80376ddb-9278-455a-b2c2-454e5748480f\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:56:25.1751951Z\",\"endTime\":\"2020-07-30T09:56:26.940944Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"0bf35f7a-c5a6-4fce-867a-882b355784ca\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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": [ "344", "345", "346" ], + "x-ms-client-request-id": [ "a7a66eeb-a019-481a-a5e8-6129389d19b6", "a7a66eeb-a019-481a-a5e8-6129389d19b6", "a7a66eeb-a019-481a-a5e8-6129389d19b6" ], "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": [ "297" ], + "x-ms-request-id": [ "85813faf-fb6d-4834-a077-d11a09f90fee" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "c9666d4f-7360-40a0-b091-a9c16603c55d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095704Z:c9666d4f-7360-40a0-b091-a9c16603c55d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:21:14 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:57:03 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj\",\"name\":\"testcluster5arkid/testdatabasev8aetj\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?api-version=2020-06-14", + "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\r\n \"databaseName\": \"testdatabasev8aetj\",\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": [ "eff6f9f5-de08-47d3-a064-d470dbbae3e2" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d68020cb-3b9b-43c2-964b-34b8be7f03a3?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "eb8ae541-a475-4420-9335-c76312892c73" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095706Z:eb8ae541-a475-4420-9335-c76312892c73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:21:15 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:57:05 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj\",\"name\":\"testfclusterkgb956/testdbconfv8aetj\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabasev8aetj\",\"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/d68020cb-3b9b-43c2-964b-34b8be7f03a3?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/d68020cb-3b9b-43c2-964b-34b8be7f03a3?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": [ "347", "348" ], + "x-ms-client-request-id": [ "66a58dd2-4252-44db-aa18-446571077227", "66a58dd2-4252-44db-aa18-446571077227" ], "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": [ "bb8ae187-0c40-4bae-8c87-f872a6c18965" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "bb78cb60-2c64-430f-9718-e4ba3e3267fc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095741Z:bb78cb60-2c64-430f-9718-e4ba3e3267fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:21:44 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:57:40 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/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/d68020cb-3b9b-43c2-964b-34b8be7f03a3\",\"name\":\"d68020cb-3b9b-43c2-964b-34b8be7f03a3\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:57:06.2096389Z\",\"endTime\":\"2020-07-30T09:57:15.0071871Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"d36141c5-d848-4007-a627-037003da09de\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?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": [ "347", "348", "349" ], + "x-ms-client-request-id": [ "66a58dd2-4252-44db-aa18-446571077227", "66a58dd2-4252-44db-aa18-446571077227", "66a58dd2-4252-44db-aa18-446571077227" ], "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": [ "846edc7f-9a20-46a6-be65-f4e20e18a2ea" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "edef39a1-b2a3-4f18-aee3-1f50a00eab01" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095743Z:edef39a1-b2a3-4f18-aee3-1f50a00eab01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:21:45 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:57:43 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj\",\"name\":\"testfclusterkgb956/testdbconfv8aetj\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabasev8aetj\",\"attachedDatabaseNames\":[\"testdatabasev8aetj\"],\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?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": [ "350" ], + "x-ms-client-request-id": [ "ab3df4c8-e73d-4f22-bc18-6dbba169c62a" ], "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/91ca98e4-a41e-4708-8816-7844fd9fe34a?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/91ca98e4-a41e-4708-8816-7844fd9fe34a?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "405882fe-1226-41aa-aafc-aa49dee7b341" ], + "x-ms-correlation-request-id": [ "405882fe-1226-41aa-aafc-aa49dee7b341" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095748Z:405882fe-1226-41aa-aafc-aa49dee7b341" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:21:45 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:57:48 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/91ca98e4-a41e-4708-8816-7844fd9fe34a?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/91ca98e4-a41e-4708-8816-7844fd9fe34a?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": [ "350", "351" ], + "x-ms-client-request-id": [ "ab3df4c8-e73d-4f22-bc18-6dbba169c62a", "ab3df4c8-e73d-4f22-bc18-6dbba169c62a" ], "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": [ "99905312-3f26-4ce6-a154-cf45e832d88c" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "852bc43a-1cc5-4e18-b714-35c363f794ae" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095819Z:852bc43a-1cc5-4e18-b714-35c363f794ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:22:15 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:58:19 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/91ca98e4-a41e-4708-8816-7844fd9fe34a\",\"name\":\"91ca98e4-a41e-4708-8816-7844fd9fe34a\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:57:48.2128242Z\",\"endTime\":\"2020-07-30T09:57:53.3850785Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"31e2fd9e-347b-4949-a9ab-c0b6d77b05c5\",\"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/91ca98e4-a41e-4708-8816-7844fd9fe34a?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/91ca98e4-a41e-4708-8816-7844fd9fe34a?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": [ "350", "351", "352" ], + "x-ms-client-request-id": [ "ab3df4c8-e73d-4f22-bc18-6dbba169c62a", "ab3df4c8-e73d-4f22-bc18-6dbba169c62a", "ab3df4c8-e73d-4f22-bc18-6dbba169c62a" ], "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": [ "295ea72b-60ed-4a18-b8f6-d161030201e5" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "97321ad4-7152-4357-bd7d-406ae0e70e70" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095820Z:97321ad4-7152-4357-bd7d-406ae0e70e70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:22:16 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:58:19 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?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": [ "353" ], + "x-ms-client-request-id": [ "6831401e-91eb-4a3d-987d-d1c96c0ce707" ], "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/c777c7b5-1e65-4e08-8e24-7718a09b2c36?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/c777c7b5-1e65-4e08-8e24-7718a09b2c36?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": [ "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": [ "83ed96e6-974f-4191-a6f4-f2317464b87c" ], + "x-ms-correlation-request-id": [ "83ed96e6-974f-4191-a6f4-f2317464b87c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095824Z:83ed96e6-974f-4191-a6f4-f2317464b87c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:22:16 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:58:24 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/c777c7b5-1e65-4e08-8e24-7718a09b2c36?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/c777c7b5-1e65-4e08-8e24-7718a09b2c36?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": [ "353", "354" ], + "x-ms-client-request-id": [ "6831401e-91eb-4a3d-987d-d1c96c0ce707", "6831401e-91eb-4a3d-987d-d1c96c0ce707" ], "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-correlation-request-id": [ "55c659d8-28b0-4741-814c-92b7207c6468" ], + "x-ms-request-id": [ "78305b90-8ca0-4308-9f59-fc61aed85000" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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-routing-request-id": [ "NORTHEUROPE:20200730T095856Z:55c659d8-28b0-4741-814c-92b7207c6468" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:22:47 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:58:55 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/c777c7b5-1e65-4e08-8e24-7718a09b2c36\",\"name\":\"c777c7b5-1e65-4e08-8e24-7718a09b2c36\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:58:21.4027581Z\",\"endTime\":\"2020-07-30T09:58:32.9973178Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"9f31f4c3-892c-446f-84da-f53fefc950e9\",\"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/c777c7b5-1e65-4e08-8e24-7718a09b2c36?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/c777c7b5-1e65-4e08-8e24-7718a09b2c36?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": [ "353", "354", "355" ], + "x-ms-client-request-id": [ "6831401e-91eb-4a3d-987d-d1c96c0ce707", "6831401e-91eb-4a3d-987d-d1c96c0ce707", "6831401e-91eb-4a3d-987d-d1c96c0ce707" ], "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": [ "1589aebd-0418-452c-bc7a-adcb8c432525" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "af629d82-257a-41c6-8f5d-1b46fad1bfe0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095858Z:af629d82-257a-41c6-8f5d-1b46fad1bfe0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:22:47 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:58:58 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Remove-AzKustoCluster.Recording.json b/src/Kusto/test/Remove-AzKustoCluster.Recording.json index 5cb0e5e95dda..5cb4784531a2 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?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": [ "56ec8f98-2116-43c7-9492-a43a457766ef" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "8fcebaa1-3e3f-4a99-a621-ee37a91350a4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095909Z:8fcebaa1-3e3f-4a99-a621-ee37a91350a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:22:51 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:59:08 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf\",\"name\":\"testclusterani9hf\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "275" ], + "x-ms-request-id": [ "2ddbd147-7eda-49ca-b8fe-c25f99846dd2" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "9051dc3d-b891-49b6-8ba3-e8435d3534eb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095942Z:9051dc3d-b891-49b6-8ba3-e8435d3534eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:23:21 GMT" ] + "Date": [ "Thu, 30 Jul 2020 09:59:41 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "289" ], + "x-ms-request-id": [ "feb6cc57-de75-48b3-a426-476c80657f26" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "ec009aa4-644b-477d-8e68-dcc67c557d39" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100013Z:ec009aa4-644b-477d-8e68-dcc67c557d39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:23:51 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:00:13 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "288" ], + "x-ms-request-id": [ "43e15fbb-915c-4160-8650-a10d3d6ac8b0" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "fb7774f9-6482-4410-8d94-89c65d6ecb13" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100049Z:fb7774f9-6482-4410-8d94-89c65d6ecb13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:24:22 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:00: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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "287" ], + "x-ms-request-id": [ "7c5ab1bf-435b-4502-a0b5-50f386717e83" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "5e72ccdb-011f-4c66-a2c7-b406cb45e931" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100122Z:5e72ccdb-011f-4c66-a2c7-b406cb45e931" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:24:52 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:01: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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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-request-id": [ "5c17c655-3f4e-4192-a5a5-207f16328b4e" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "764c0168-650c-431c-a90f-2f69ef23a26f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100152Z:764c0168-650c-431c-a90f-2f69ef23a26f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:25:22 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:01: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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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" ], @@ -265,31 +265,31 @@ "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-request-id": [ "6c8ff3e6-0442-41cc-ac75-7ae2a79a0286" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "ecfdd7e5-2205-487f-8baf-38f442f3c151" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100223Z:ecfdd7e5-2205-487f-8baf-38f442f3c151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:25:53 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:02: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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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" ], @@ -306,31 +306,31 @@ "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-request-id": [ "5bbb0b54-7975-4de8-bcaa-02c4760b96fd" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "a684d60d-cece-4977-99fb-8e073dea8fb3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100253Z:a684d60d-cece-4977-99fb-8e073dea8fb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:26:23 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:02: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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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-request-id": [ "7700cb43-ae90-426a-b823-6b8746c5fdd0" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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-correlation-request-id": [ "2ee23ec6-8cb0-47cb-b6fe-e7451e86b424" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100329Z:2ee23ec6-8cb0-47cb-b6fe-e7451e86b424" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:26:53 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:03:29 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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-correlation-request-id": [ "11068a11-b53a-411e-bf80-939d504f3908" ], + "x-ms-request-id": [ "58ac53d9-2223-4250-b8e5-8e05228d046a" ], "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" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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-routing-request-id": [ "NORTHEUROPE:20200730T100403Z:11068a11-b53a-411e-bf80-939d504f3908" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:27:23 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:04:03 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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" ], @@ -429,31 +429,31 @@ "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-request-id": [ "8f31a71e-0106-46d4-a708-166053f4f888" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "53936021-9d63-4aa8-bdb0-db2adb7e2d8b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100436Z:53936021-9d63-4aa8-bdb0-db2adb7e2d8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:27:54 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:04:35 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "290" ], + "x-ms-request-id": [ "ffdfb3c0-4cae-44bc-b3bb-6cafd223d403" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "e9cd5dbb-300a-4272-b211-3aac275c4fb8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100506Z:e9cd5dbb-300a-4272-b211-3aac275c4fb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:28:24 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:05:06 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "289" ], + "x-ms-request-id": [ "a6e9a5f5-2f0c-4b0c-a7f0-2868976df4a2" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "290cdff1-0f01-42d6-a15f-49a6433c3b38" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100540Z:290cdff1-0f01-42d6-a15f-49a6433c3b38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:28:55 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:05:40 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "288" ], + "x-ms-request-id": [ "fdb29a45-1608-4a4b-8d4c-6f51c8e637f4" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "aa60d2b2-122d-4371-87c6-a6d736dd96c8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100610Z:aa60d2b2-122d-4371-87c6-a6d736dd96c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:29:25 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:06:10 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "287" ], + "x-ms-request-id": [ "800c7c31-1307-4202-9f4c-7c9efa8ae022" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "96460d37-a9a4-4b38-9e36-b99dfe777149" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100641Z:96460d37-a9a4-4b38-9e36-b99dfe777149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:29:55 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:06:41 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "286" ], + "x-ms-request-id": [ "11f33057-7fa7-47bb-9057-cb0a771567a1" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "c9d9140f-15dd-4d43-8b76-fd3319ec3c30" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100711Z:c9d9140f-15dd-4d43-8b76-fd3319ec3c30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:30:26 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:07:10 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "285" ], + "x-ms-request-id": [ "c184fd13-6bea-4ff5-a872-7b529bb40841" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "542b78f2-976f-44ad-a92a-4f432c29f45c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100741Z:542b78f2-976f-44ad-a92a-4f432c29f45c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:30:56 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:07:40 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "284" ], + "x-ms-request-id": [ "bdf05345-4821-4029-b64a-c07ca1bfd9b2" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "a33338e6-e9bd-48bb-9f1d-3883c71b545b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100811Z:a33338e6-e9bd-48bb-9f1d-3883c71b545b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:31:27 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:08:11 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "283" ], + "x-ms-request-id": [ "edc95d28-a84e-4dd1-9949-f21293f025ab" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "13340fe3-a658-4d7c-a58b-6243bd94bf02" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100842Z:13340fe3-a658-4d7c-a58b-6243bd94bf02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:31:57 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:08:41 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "282" ], + "x-ms-request-id": [ "c22b1039-743e-438f-be4a-376eb1e95983" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "bb690467-b2b8-49fc-8cb1-1a403af7d6d1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100912Z:bb690467-b2b8-49fc-8cb1-1a403af7d6d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:32:27 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:09:12 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "3b889f4c-b3fa-4166-b5e8-d7f222c87e6d" ], + "x-ms-request-id": [ "f67fc677-687b-49b8-a900-2e71b55ceb07" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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:20200730T100942Z:3b889f4c-b3fa-4166-b5e8-d7f222c87e6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:32:58 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:09:42 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "a44af09f-c298-4941-9e5d-4feed77c894e" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "035d34de-75bf-49f2-b00b-f8b94ef68601" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101013Z:035d34de-75bf-49f2-b00b-f8b94ef68601" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:33:28 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:10:12 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "e31e9bd4-2693-4b5c-85d1-cfb8155a2031" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "f2b2c683-7655-4f60-8357-91c42c4955d7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101043Z:f2b2c683-7655-4f60-8357-91c42c4955d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:33:58 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:10:43 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "dfbe92e3-7b20-451c-b3ce-8fd856520392" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "6a577b34-c4e1-47a6-bed1-c0c48c74c4eb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101113Z:6a577b34-c4e1-47a6-bed1-c0c48c74c4eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:34:29 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:11:13 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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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": [ "d06e4243-f883-4e71-a4cf-e1a241702714" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "502ff1f3-8f63-4518-8269-1552aa486193" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101143Z:502ff1f3-8f63-4518-8269-1552aa486193" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:34:59 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:11:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "473" ], + "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/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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], "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" ], @@ -1037,6 +1037,252 @@ "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": [ "b0ceb045-7205-48c7-95ae-811217c74722" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "62129525-2bfc-432a-9cd2-bec232ba7891" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101214Z:62129525-2bfc-432a-9cd2-bec232ba7891" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 10:12:13 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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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": { + } + }, + "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": [ "69c47cd7-21a4-4113-abff-7641d389dbc4" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "2e752a39-5012-4087-967a-d7b35da96ab6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101244Z:2e752a39-5012-4087-967a-d7b35da96ab6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 10:12:43 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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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": [ "283" ], + "x-ms-request-id": [ "478f98dd-4b65-4271-80a6-54fb367c05f8" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "cc61566f-3949-42ab-971e-c7fd1e4df785" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101314Z:cc61566f-3949-42ab-971e-c7fd1e4df785" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 10:13:14 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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "e7171c0a-07fa-4119-8164-22340f321cf9" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "9ee7f561-b38d-441a-aa45-9ee73a2d5a92" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101344Z:9ee7f561-b38d-441a-aa45-9ee73a2d5a92" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 10:13:44 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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385" ], + "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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", "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", "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", "__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-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "abc42a36-92d5-4cf4-bba9-ca648c78e631" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "e3e37239-f3c7-41d6-9486-000c6b9c594b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101415Z:e3e37239-f3c7-41d6-9486-000c6b9c594b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 10:14:14 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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "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": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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", "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", "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", "__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": [ "280" ], + "x-ms-request-id": [ "25e040fc-5de0-4e71-8103-a2b2bc5d741d" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "65b61661-d89e-495a-b443-34b525d0e6f9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101445Z:65b61661-d89e-495a-b443-34b525d0e6f9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 10:14:44 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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:14:35.4371972Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + } + }, + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14+32": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "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": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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", "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", "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", "__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": { @@ -1045,31 +1291,31 @@ "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-request-id": [ "6234b5ae-22e2-4596-80f4-2e581c44e046" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "7e0f4840-16d4-48bd-92e4-b100265c04ef" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101445Z:7e0f4840-16d4-48bd-92e4-b100265c04ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:34:59 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:14: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/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf\",\"name\":\"testclusterani9hf\",\"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://testclusterani9hf.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterani9hf.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+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf?api-version=2020-02-15+27": { + "Remove-AzKustoCluster+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14+33": { "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], + "x-ms-unique-id": [ "388" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51" ], "CommandName": [ "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1084,17 +1330,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/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" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14986" ], + "x-ms-request-id": [ "fdab5d6f-31b8-4d27-9d6f-a4bbe16ebabd" ], + "x-ms-correlation-request-id": [ "fdab5d6f-31b8-4d27-9d6f-a4bbe16ebabd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101446Z:fdab5d6f-31b8-4d27-9d6f-a4bbe16ebabd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:34:59 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:14:45 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1103,14 +1349,14 @@ "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+28": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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" ], + "x-ms-unique-id": [ "388", "389" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -1126,32 +1372,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], + "x-ms-correlation-request-id": [ "3fb16db0-3ac8-4546-8bc3-f728f0f60fe8" ], + "x-ms-request-id": [ "a78ac598-d5c0-460f-84d4-cfe5d7d35880" ], "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" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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-routing-request-id": [ "NORTHEUROPE:20200730T101516Z:3fb16db0-3ac8-4546-8bc3-f728f0f60fe8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:35:30 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:15:16 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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" ], + "x-ms-unique-id": [ "388", "389", "390" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1167,32 +1413,32 @@ "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-request-id": [ "c56bc97d-1432-41f7-bdf3-d7104e416c48" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "68e7b40b-8441-4911-9000-06e3bbe9f68b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101547Z:68e7b40b-8441-4911-9000-06e3bbe9f68b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:36:00 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:15:46 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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+30": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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" ], + "x-ms-unique-id": [ "388", "389", "390", "391" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1209,31 +1455,31 @@ "Pragma": [ "no-cache" ], "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-request-id": [ "c7a275df-e1f3-44c1-ba39-9fa13db8b57a" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "26b5b644-c61e-4d3e-892f-6cdf86413dc5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101617Z:26b5b644-c61e-4d3e-892f-6cdf86413dc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:36:30 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:16:16 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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+31": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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" ], + "x-ms-unique-id": [ "388", "389", "390", "391", "392" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1250,31 +1496,31 @@ "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" ], + "x-ms-request-id": [ "286ded9e-fa21-4c51-8b95-de905b814999" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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-correlation-request-id": [ "35686720-eca7-44d8-9d2d-7c33034e8c7d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101647Z:35686720-eca7-44d8-9d2d-7c33034e8c7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:37:01 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:16:47 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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+32": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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" ], + "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1290,32 +1536,32 @@ "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-request-id": [ "91f42012-8b73-43ea-bb58-0d3d1c636082" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "1b8d9d9f-3011-40c3-b6c2-73d47d619ea9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101718Z:1b8d9d9f-3011-40c3-b6c2-73d47d619ea9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:37:31 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:17:17 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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" ], + "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1332,31 +1578,31 @@ "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-request-id": [ "a56822ee-b2f5-424b-a3a9-decac1cc723f" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "a637e2d4-2d73-40ff-8d76-52ee0bea9f24" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101748Z:a637e2d4-2d73-40ff-8d76-52ee0bea9f24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:38:01 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:17:47 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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" ], + "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1373,31 +1619,31 @@ "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-request-id": [ "6bf915bb-23bf-4525-aec9-e10ab4f421c4" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "b058efe7-20ce-47e4-9e78-87b88264ae6e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101818Z:b058efe7-20ce-47e4-9e78-87b88264ae6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:38:32 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:18:18 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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" ], + "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395", "396" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1413,32 +1659,32 @@ "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-request-id": [ "a64c45f8-eb41-477e-805e-9669514403e6" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "c8e1f5cc-3cd4-4838-890f-6628c7822046" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101848Z:c8e1f5cc-3cd4-4838-890f-6628c7822046" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:39:02 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:18:48 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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" ], + "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1455,31 +1701,31 @@ "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-request-id": [ "adbfee31-cef0-4767-9890-381ec8464afd" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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-correlation-request-id": [ "97b8a76c-350e-488f-9099-79c0dabac992" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101918Z:97b8a76c-350e-488f-9099-79c0dabac992" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:39:32 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:19:18 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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" ], + "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1495,32 +1741,32 @@ "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": [ "280" ], + "x-ms-request-id": [ "4c8f716f-6ab3-42a0-9448-71e374bacce0" ], + "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": [ "a25c9c39-e27b-4307-b70f-74d6dbcc131f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101949Z:a25c9c39-e27b-4307-b70f-74d6dbcc131f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:40:03 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:19:48 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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" ], + "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1536,32 +1782,32 @@ "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-request-id": [ "74b98fdc-e51a-40d8-bb1d-9f93477a4b16" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "582187da-175f-48cf-b6d1-17b926a42d15" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102019Z:582187da-175f-48cf-b6d1-17b926a42d15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:40:33 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:20:18 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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" ], + "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1577,32 +1823,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], + "x-ms-correlation-request-id": [ "88695c20-7433-4048-a6b0-55d4e370659b" ], + "x-ms-request-id": [ "c492ba1c-25a5-49bb-9d5d-ce5b1727a372" ], "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" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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-routing-request-id": [ "NORTHEUROPE:20200730T102049Z:88695c20-7433-4048-a6b0-55d4e370659b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:41:03 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:20:49 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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" ], + "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1619,31 +1865,31 @@ "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-request-id": [ "9b4de67f-8acb-468f-ba84-9dd0e76ce2cb" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "ffa17e56-76b5-4bea-a606-4c2fcc6b3007" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102120Z:ffa17e56-76b5-4bea-a606-4c2fcc6b3007" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:41:34 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:21:20 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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" ], + "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1659,32 +1905,32 @@ "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-request-id": [ "f56415e8-d49c-4036-9f24-b08d445f59c7" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "f65e6829-7c56-4ce7-9792-a530ee44c389" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102150Z:f65e6829-7c56-4ce7-9792-a530ee44c389" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:42:04 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:21:50 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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" ], + "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402", "403" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1701,31 +1947,31 @@ "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-request-id": [ "713c18c8-6e7d-49ca-a66f-ad02954e6950" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "749d9e3e-1c16-441b-8407-bc23efa0e5b1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102220Z:749d9e3e-1c16-441b-8407-bc23efa0e5b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:42:35 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:22:19 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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" ], + "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402", "403", "404" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1742,31 +1988,31 @@ "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-request-id": [ "e0802c28-6038-4343-907c-7deff99cb17f" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "b3d8e78c-3fc0-4962-8f80-4c2ee07e145b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102251Z:b3d8e78c-3fc0-4962-8f80-4c2ee07e145b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:43:05 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:22:50 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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+44": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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", "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" ], + "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402", "403", "404", "405" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1782,32 +2028,32 @@ "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": [ "8fec8510-12a4-4cae-967a-d596aee8c1d2" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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" ], + "x-ms-correlation-request-id": [ "6e7b4448-a497-4299-8c57-271ecb7dfaf1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102321Z:6e7b4448-a497-4299-8c57-271ecb7dfaf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:43:35 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:23:20 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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+45": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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", "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" ], + "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402", "403", "404", "405", "406" ], + "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1824,31 +2070,31 @@ "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-ms-request-id": [ "161607dc-a2f0-49d5-8dec-12a6514172d4" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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" ], + "x-ms-correlation-request-id": [ "107c5304-b1a9-41fc-88d2-2904e96b59fb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102351Z:107c5304-b1a9-41fc-88d2-2904e96b59fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:44:06 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:23: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/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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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+46": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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", "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" ], + "x-ms-unique-id": [ "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": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1865,31 +2111,31 @@ "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-ms-request-id": [ "45f4c814-255f-49b7-9993-cd1d83564095" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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" ], + "x-ms-correlation-request-id": [ "67c5eb29-d159-4462-8e19-24137051cc3c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102421Z:67c5eb29-d159-4462-8e19-24137051cc3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:44:36 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:24:21 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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+47": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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", "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" ], + "x-ms-unique-id": [ "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": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1905,32 +2151,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "b6ebfb19-19fa-4bdd-bfd1-26ebeb43656a" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124507Z:d7a17e9f-b9ec-4652-bed0-82af7b269efb" ], + "x-ms-correlation-request-id": [ "cd12a97c-8706-4ab4-aa11-dbed74153f36" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102452Z:cd12a97c-8706-4ab4-aa11-dbed74153f36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:45:07 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:24:51 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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:24:26.0210223Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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+48": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14\u0026operationResultResponseType=Location+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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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", "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" ], + "x-ms-unique-id": [ "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": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], "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" ], @@ -1945,794 +2191,15 @@ "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-ms-request-id": [ "08d351c2-1858-47f9-a0ed-532145b3aa34" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "e9a10881-6769-43c9-80ef-bcef193dcdc6" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125445Z:e9a10881-6769-43c9-80ef-bcef193dcdc6" ], + "x-ms-correlation-request-id": [ "31460aeb-878f-4ced-a04c-7c81b0502525" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102452Z:31460aeb-878f-4ced-a04c-7c81b0502525" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:54:44 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:24:51 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Remove-AzKustoClusterLanguageExtension.Recording.json b/src/Kusto/test/Remove-AzKustoClusterLanguageExtension.Recording.json index f180cc3f0744..53d49a3f2702 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/c72e87d6-f5c4-42fd-8d8a-f696c4d0acdc?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "d8d8056a-b340-459a-94bd-18b630e279ab" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c72e87d6-f5c4-42fd-8d8a-f696c4d0acdc?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "1198" ], + "x-ms-correlation-request-id": [ "12ddcb86-3833-4ebc-a7e4-07a6e80474fc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102453Z:12ddcb86-3833-4ebc-a7e4-07a6e80474fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:54:45 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:24:52 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/c72e87d6-f5c4-42fd-8d8a-f696c4d0acdc?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/c72e87d6-f5c4-42fd-8d8a-f696c4d0acdc?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": [ "7989ffde-a447-42e8-adc5-f9ad05cfcaff", "7989ffde-a447-42e8-adc5-f9ad05cfcaff" ], "CommandName": [ "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Remove-AzKustoClusterLanguageExtension_RemoveExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,31 +59,31 @@ "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-request-id": [ "1cd134db-2685-47cd-91a2-f8c3e4ea5a94" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "1df4b1d7-f80c-4b31-8182-85a22d94d340" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102523Z:1df4b1d7-f80c-4b31-8182-85a22d94d340" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:55:15 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:25:23 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/c72e87d6-f5c4-42fd-8d8a-f696c4d0acdc\",\"name\":\"c72e87d6-f5c4-42fd-8d8a-f696c4d0acdc\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:24:53.5926983Z\",\"endTime\":\"2020-07-30T10:24:58.3586959Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6da8e3e5-2480-424b-a701-82c57513134c\",\"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/c72e87d6-f5c4-42fd-8d8a-f696c4d0acdc?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/c72e87d6-f5c4-42fd-8d8a-f696c4d0acdc?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": [ "7989ffde-a447-42e8-adc5-f9ad05cfcaff", "7989ffde-a447-42e8-adc5-f9ad05cfcaff", "7989ffde-a447-42e8-adc5-f9ad05cfcaff" ], "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": [ "34d4c7bb-48d5-4178-8637-2fc6c917954c" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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-correlation-request-id": [ "5340e516-7eb9-40a7-9e83-dabed5b5305b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102524Z:5340e516-7eb9-40a7-9e83-dabed5b5305b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:55:15 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:25:23 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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": [ "32e66478-2cfb-4c49-a830-1f81d705bca7" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -140,27 +140,27 @@ "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-request-id": [ "13e27a15-94e4-4160-97e0-0608861338b6" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "f1420482-143c-411b-8abf-ab9257977555" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102525Z:f1420482-143c-411b-8abf-ab9257977555" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:55:15 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:25:24 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "a9ce1d7f-a784-4e71-bd40-b5b695262e8f" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "1197" ], + "x-ms-correlation-request-id": [ "705d6841-903d-4e06-864e-60e2e3ae1f56" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102525Z:705d6841-903d-4e06-864e-60e2e3ae1f56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:55:15 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:25:25 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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?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": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], "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-request-id": [ "4801502c-a568-48f4-847c-4b6fd6734b1e" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "3f82b029-7786-45e0-8939-08b123ec6021" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102556Z:3f82b029-7786-45e0-8939-08b123ec6021" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:55:46 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:25:55 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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"name\":\"1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:25:25.7671592Z\",\"endTime\":\"2020-07-30T10:25:28.6892433Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"2caaeacf-53ce-4a9c-9759-689b5a5eab23\",\"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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?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": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], "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-correlation-request-id": [ "91f0fee3-47bd-4102-ae87-1769cb6e2e1b" ], + "x-ms-request-id": [ "06da7310-2c06-4fa0-8f98-cc8f16c9e26a" ], "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" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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-routing-request-id": [ "NORTHEUROPE:20200730T102626Z:91f0fee3-47bd-4102-ae87-1769cb6e2e1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:56:17 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:26:26 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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"name\":\"1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:25:25.7671592Z\",\"endTime\":\"2020-07-30T10:25:28.6892433Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"2caaeacf-53ce-4a9c-9759-689b5a5eab23\",\"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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?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": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], "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" ], @@ -299,31 +299,31 @@ "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-request-id": [ "22d183af-94a7-4a3c-82a7-8d30dc8282ac" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "2e730f0a-1a2e-4309-b8ad-d2a583b17bbd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102657Z:2e730f0a-1a2e-4309-b8ad-d2a583b17bbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:56:46 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:26:56 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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"name\":\"1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:25:25.7671592Z\",\"endTime\":\"2020-07-30T10:25:28.6892433Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"2caaeacf-53ce-4a9c-9759-689b5a5eab23\",\"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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?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": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], "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-request-id": [ "e641f122-bb08-4988-8573-13fd2e433af0" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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-correlation-request-id": [ "f87efa4c-0a7e-4cac-98bb-ce27ef356a82" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102727Z:f87efa4c-0a7e-4cac-98bb-ce27ef356a82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:57:17 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:27:27 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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"name\":\"1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:25:25.7671592Z\",\"endTime\":\"2020-07-30T10:25:28.6892433Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"2caaeacf-53ce-4a9c-9759-689b5a5eab23\",\"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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?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": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], "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" ], @@ -381,31 +381,31 @@ "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-request-id": [ "fb54c273-3ca6-4f62-8a4e-0a17aba7ca55" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "1e2ddb7c-4765-49ce-a17b-1cfc1dbdd4af" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102757Z:1e2ddb7c-4765-49ce-a17b-1cfc1dbdd4af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:57:48 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:27:57 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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"name\":\"1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:25:25.7671592Z\",\"endTime\":\"2020-07-30T10:25:28.6892433Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"2caaeacf-53ce-4a9c-9759-689b5a5eab23\",\"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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?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": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], "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" ], @@ -422,31 +422,31 @@ "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-request-id": [ "b2cf1f78-4692-45b3-9b8b-c3781bb73db5" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "6921bfeb-6f4b-4d07-a8c3-97667ce94d55" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102828Z:6921bfeb-6f4b-4d07-a8c3-97667ce94d55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:58:18 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:28:27 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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"name\":\"1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:25:25.7671592Z\",\"endTime\":\"2020-07-30T10:25:28.6892433Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"2caaeacf-53ce-4a9c-9759-689b5a5eab23\",\"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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?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": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], "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-request-id": [ "0db450b9-1727-479e-9190-99331fe9bee5" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "115461b5-d89c-49e4-84c9-e79070a46a61" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102858Z:115461b5-d89c-49e4-84c9-e79070a46a61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:58:48 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:28:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "478" ], + "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\":\"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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"name\":\"1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:25:25.7671592Z\",\"endTime\":\"2020-07-30T10:25:28.6892433Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"2caaeacf-53ce-4a9c-9759-689b5a5eab23\",\"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\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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?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/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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14", "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": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], "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,56 @@ "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-Powered-By": [ "ASP.NET" ], + "Vary": [ "Accept-Encoding" ], "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-request-id": [ "ae729054-5de8-4cfd-bcdb-62a2291352ae" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "d8fa91d0-4b5f-45af-b671-2d3e46f14e5f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102928Z:d8fa91d0-4b5f-45af-b671-2d3e46f14e5f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 10:29:27 GMT" ] + }, + "ContentHeaders": { + "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"name\":\"1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:25:25.7671592Z\",\"endTime\":\"2020-07-30T10:29:10.4623579Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"2caaeacf-53ce-4a9c-9759-689b5a5eab23\",\"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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14\u0026operationResultResponseType=Location+11": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "414", "415", "416", "417", "418", "419", "420", "421", "422", "423" ], + "x-ms-client-request-id": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], + "CommandName": [ "Remove-AzKustoClusterLanguageExtension", "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", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded" ], + "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" ], + "x-ms-request-id": [ "3b7e42f7-bef6-4c86-9e4c-cd699c5e06f1" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "156abea8-2ece-4782-ac54-c8afbed0d0a2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102928Z:156abea8-2ece-4782-ac54-c8afbed0d0a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:58:49 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:29:27 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Remove-AzKustoClusterPrincipalAssignment.Recording.json b/src/Kusto/test/Remove-AzKustoClusterPrincipalAssignment.Recording.json index fab51d81eea5..26cbaf991286 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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": [ "5efdde84-cd9c-4b29-9050-6360f79efa80" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/dc1307c3-19a6-44dd-b6ec-aef6b1040ca9?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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-ratelimit-remaining-subscription-resource-requests": [ "199" ], + "x-ms-correlation-request-id": [ "f8ef4afb-f2dd-4c1a-a4c5-303dabbbb3e4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105315Z:f8ef4afb-f2dd-4c1a-a4c5-303dabbbb3e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:58:52 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:53:15 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/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/dc1307c3-19a6-44dd-b6ec-aef6b1040ca9?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/dc1307c3-19a6-44dd-b6ec-aef6b1040ca9?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-unique-id": [ "424", "425" ], + "x-ms-client-request-id": [ "e52025c4-4a6d-4057-8efd-65af27f5866b", "e52025c4-4a6d-4057-8efd-65af27f5866b" ], "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": [ "299" ], + "x-ms-request-id": [ "410437ac-4bf3-4d41-9620-8ef87c7e6cce" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "e6ba2d7c-39fd-4509-a53e-9420f779481f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105345Z:e6ba2d7c-39fd-4509-a53e-9420f779481f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:59:22 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:53:45 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/dc1307c3-19a6-44dd-b6ec-aef6b1040ca9\",\"name\":\"dc1307c3-19a6-44dd-b6ec-aef6b1040ca9\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:53:15.4726629Z\",\"endTime\":\"2020-07-30T10:53:17.8634603Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsAdd\",\"RootActivityId\":\"4bc02f4c-47ec-46b1-9dbc-5a37d7a4d851\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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-unique-id": [ "424", "425", "426" ], + "x-ms-client-request-id": [ "e52025c4-4a6d-4057-8efd-65af27f5866b", "e52025c4-4a6d-4057-8efd-65af27f5866b", "e52025c4-4a6d-4057-8efd-65af27f5866b" ], "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": [ "eb50a280-af23-4fb1-998e-d1dd438e7ef8" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "7f073b8d-6eb2-4ad5-96b7-79b1160019c7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105346Z:7f073b8d-6eb2-4ad5-96b7-79b1160019c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:59:22 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:53:45 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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-unique-id": [ "427" ], + "x-ms-client-request-id": [ "c5878f67-7c82-4418-b296-c1c627bb5e7c" ], "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/ad627f50-297d-495c-b849-4c867b7d48cc?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/ad627f50-297d-495c-b849-4c867b7d48cc?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "14999" ], + "x-ms-request-id": [ "6109062c-1135-443a-bba2-730f6ae9e861" ], + "x-ms-correlation-request-id": [ "6109062c-1135-443a-bba2-730f6ae9e861" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105346Z:6109062c-1135-443a-bba2-730f6ae9e861" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:59:23 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:53:46 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/ad627f50-297d-495c-b849-4c867b7d48cc?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/ad627f50-297d-495c-b849-4c867b7d48cc?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-unique-id": [ "427", "428" ], + "x-ms-client-request-id": [ "c5878f67-7c82-4418-b296-c1c627bb5e7c", "c5878f67-7c82-4418-b296-c1c627bb5e7c" ], "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": [ "298" ], + "x-ms-request-id": [ "a718a8a6-18d5-49d3-9ae2-8995edc950fd" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "937c9bfa-5cec-467b-8d6c-7708b9c74214" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105417Z:937c9bfa-5cec-467b-8d6c-7708b9c74214" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:59:54 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:54:16 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/ad627f50-297d-495c-b849-4c867b7d48cc\",\"name\":\"ad627f50-297d-495c-b849-4c867b7d48cc\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:53:46.8657041Z\",\"endTime\":\"2020-07-30T10:53:48.3658111Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsDrop\",\"RootActivityId\":\"2151e0c2-2e95-4a1e-b6cb-bda6d91de467\",\"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/ad627f50-297d-495c-b849-4c867b7d48cc?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/ad627f50-297d-495c-b849-4c867b7d48cc?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-unique-id": [ "427", "428", "429" ], + "x-ms-client-request-id": [ "c5878f67-7c82-4418-b296-c1c627bb5e7c", "c5878f67-7c82-4418-b296-c1c627bb5e7c", "c5878f67-7c82-4418-b296-c1c627bb5e7c" ], "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": [ "e8a1b938-5f20-4fe0-a09e-6c2f2a752e22" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "297" ], + "x-ms-correlation-request-id": [ "04561d81-dd54-48b6-8fbf-b18746e7e0e5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105417Z:04561d81-dd54-48b6-8fbf-b18746e7e0e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:59:54 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:54:16 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Remove-AzKustoDataConnection.Recording.json b/src/Kusto/test/Remove-AzKustoDataConnection.Recording.json index c5e82c80c4b9..6dcd0c38ca84 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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-unique-id": [ "445" ], + "x-ms-client-request-id": [ "d296c9f4-43b7-4021-b9f9-7b2fda617fd5" ], "CommandName": [ "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -17,114 +17,31 @@ } }, "Response": { - "StatusCode": 202, + "StatusCode": 204, "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" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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-ratelimit-remaining-subscription-deletes": [ "14996" ], + "x-ms-request-id": [ "d70fc8c3-7640-4d36-b1ed-6c600e74e2f6" ], + "x-ms-correlation-request-id": [ "d70fc8c3-7640-4d36-b1ed-6c600e74e2f6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105626Z:d70fc8c3-7640-4d36-b1ed-6c600e74e2f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:02:01 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:56:25 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "444", "445" ], - "x-ms-client-request-id": [ "e4f0ddee-e999-4bbf-8c4e-5b0b4234beb2", "e4f0ddee-e999-4bbf-8c4e-5b0b4234beb2" ], - "CommandName": [ "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection" ], - "FullCommandName": [ "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete" ], - "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-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-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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:02:31 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/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\"}}" - } - }, - "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": { - "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", - "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" ], - "CommandName": [ "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection" ], - "FullCommandName": [ "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_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": { - } - }, - "Response": { - "StatusCode": 200, - "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-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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:02:31 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14+2": { "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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 \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubns5arkid/eventhubs/eventhub5arkid\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { @@ -138,33 +55,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": [ "aec35a28-a70c-4480-8c80-cbf8ab3f4db8" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9e6d324e-9569-4aab-83bf-1545cdd5f5b0?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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-ratelimit-remaining-subscription-resource-requests": [ "199" ], + "x-ms-correlation-request-id": [ "9bb72006-ab26-4aae-aedb-cf4bb4eb6de8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105627Z:9bb72006-ab26-4aae-aedb-cf4bb4eb6de8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:02:32 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:56:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "755" ], "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid/testdataconnection5arkid\",\"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/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubns5arkid/eventhubs/eventhub5arkid\",\"mappingRuleName\":\"EventsMapping\",\"tableName\":\"Events\",\"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/9e6d324e-9569-4aab-83bf-1545cdd5f5b0?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/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/9e6d324e-9569-4aab-83bf-1545cdd5f5b0?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-unique-id": [ "446", "447" ], + "x-ms-client-request-id": [ "a238a7dc-b14d-4f50-9daf-2f2fa0fa3823", "a238a7dc-b14d-4f50-9daf-2f2fa0fa3823" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection" ], "FullCommandName": [ "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -180,32 +97,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": [ "290" ], + "x-ms-request-id": [ "d027dd4f-37b6-41d6-bcef-2a2b68a6681d" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "3a6fe4db-5ea8-44a3-8f9b-cc0b4fae76e7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105658Z:3a6fe4db-5ea8-44a3-8f9b-cc0b4fae76e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:03:03 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:56:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "481" ], + "Content-Length": [ "621" ], "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/9e6d324e-9569-4aab-83bf-1545cdd5f5b0\",\"name\":\"9e6d324e-9569-4aab-83bf-1545cdd5f5b0\",\"status\":\"Failed\",\"startTime\":\"2020-07-30T10:56:27.7697305Z\",\"endTime\":\"2020-07-30T10:56:29.5979942Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"db1db438-a505-4213-b3c2-11eb7e84b19e\",\"provisioningState\":\"Failed\",\"OperationState\":\"BadInput\"},\"error\":{\"code\":\"EventHubValidationErorFound\",\"message\":\"[BadRequest] Validation Errors found: table does not exist\"}}" } }, - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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-unique-id": [ "446", "447", "448" ], + "x-ms-client-request-id": [ "a238a7dc-b14d-4f50-9daf-2f2fa0fa3823", "a238a7dc-b14d-4f50-9daf-2f2fa0fa3823", "a238a7dc-b14d-4f50-9daf-2f2fa0fa3823" ], "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" ], @@ -216,28 +133,26 @@ } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "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": [ "2cb1714f-4a46-406b-a7e7-9cf4d3e8c294" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-correlation-request-id": [ "45b97fc0-6b38-45bb-a65c-38080b7e6fe2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105658Z:45b97fc0-6b38-45bb-a65c-38080b7e6fe2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:03:03 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:56:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "793" ], + "Content-Length": [ "300" ], "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": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid\u0027 is not found.\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Remove-AzKustoDatabase.Recording.json b/src/Kusto/test/Remove-AzKustoDatabase.Recording.json index 0f4c9af5b839..a73974e8d7a9 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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": [ "bd08b648-f0ec-4dd2-bf95-08852f24088e" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/59a12386-2c13-4b47-b4c2-4ae53e901d52?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "199" ], + "x-ms-correlation-request-id": [ "23d95477-d065-48bc-a393-d11a83bddafb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105418Z:23d95477-d065-48bc-a393-d11a83bddafb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:59:55 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:54:17 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf\",\"name\":\"testcluster5arkid/testdatabaseani9hf\",\"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/59a12386-2c13-4b47-b4c2-4ae53e901d52?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/59a12386-2c13-4b47-b4c2-4ae53e901d52?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-unique-id": [ "430", "431" ], + "x-ms-client-request-id": [ "706128d8-bd6c-4eff-90cf-15ffa6ecfafd", "706128d8-bd6c-4eff-90cf-15ffa6ecfafd" ], "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": [ "296" ], + "x-ms-request-id": [ "bfee92d6-7476-40f3-92bf-47f71d236192" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "b0c0e08c-1f65-42c6-a648-d7a62b72df98" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105448Z:b0c0e08c-1f65-42c6-a648-d7a62b72df98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:25 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:54:48 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/59a12386-2c13-4b47-b4c2-4ae53e901d52\",\"name\":\"59a12386-2c13-4b47-b4c2-4ae53e901d52\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:54:18.4840726Z\",\"endTime\":\"2020-07-30T10:54:21.9530984Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"a0af3022-7402-4a9c-b7c1-e455ffad20ea\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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-unique-id": [ "430", "431", "432" ], + "x-ms-client-request-id": [ "706128d8-bd6c-4eff-90cf-15ffa6ecfafd", "706128d8-bd6c-4eff-90cf-15ffa6ecfafd", "706128d8-bd6c-4eff-90cf-15ffa6ecfafd" ], "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": [ "ba6cf2ff-7826-4ae3-b132-46eecb890c3f" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "8553a7ad-6bdf-49a0-bb09-dcd693aac075" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105449Z:8553a7ad-6bdf-49a0-bb09-dcd693aac075" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:25 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:54:49 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf\",\"name\":\"testcluster5arkid/testdatabaseani9hf\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?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-unique-id": [ "433" ], + "x-ms-client-request-id": [ "c88e35aa-38fa-4b74-9778-a66c3f7f0309" ], "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/faa5d8a0-953a-4eb0-a931-5ab9d3cf5aa5?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/faa5d8a0-953a-4eb0-a931-5ab9d3cf5aa5?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "14998" ], + "x-ms-request-id": [ "a903211c-c9e6-47e4-9a2b-1dcec16dc0e6" ], + "x-ms-correlation-request-id": [ "a903211c-c9e6-47e4-9a2b-1dcec16dc0e6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105449Z:a903211c-c9e6-47e4-9a2b-1dcec16dc0e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:25 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:54:49 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/faa5d8a0-953a-4eb0-a931-5ab9d3cf5aa5?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/faa5d8a0-953a-4eb0-a931-5ab9d3cf5aa5?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-unique-id": [ "433", "434" ], + "x-ms-client-request-id": [ "c88e35aa-38fa-4b74-9778-a66c3f7f0309", "c88e35aa-38fa-4b74-9778-a66c3f7f0309" ], "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": [ "295" ], + "x-ms-request-id": [ "33e9909e-84d1-4541-bcf7-fedae6a5e169" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "1bf66818-8bf2-44e7-90cb-bc2ae68ddab3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105520Z:1bf66818-8bf2-44e7-90cb-bc2ae68ddab3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:55 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:55:19 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/faa5d8a0-953a-4eb0-a931-5ab9d3cf5aa5\",\"name\":\"faa5d8a0-953a-4eb0-a931-5ab9d3cf5aa5\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:54:49.7095819Z\",\"endTime\":\"2020-07-30T10:54:52.4531091Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"649be3a6-7fd5-4123-ac43-e6e653538c94\",\"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/faa5d8a0-953a-4eb0-a931-5ab9d3cf5aa5?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/faa5d8a0-953a-4eb0-a931-5ab9d3cf5aa5?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-unique-id": [ "433", "434", "435" ], + "x-ms-client-request-id": [ "c88e35aa-38fa-4b74-9778-a66c3f7f0309", "c88e35aa-38fa-4b74-9778-a66c3f7f0309", "c88e35aa-38fa-4b74-9778-a66c3f7f0309" ], "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": [ "6a62a686-049d-44fc-a5ff-3932fb8fd5b7" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "294" ], + "x-ms-correlation-request-id": [ "b983e7ab-8afb-4f22-adfc-b2e901525cd5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105520Z:b983e7ab-8afb-4f22-adfc-b2e901525cd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:56 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:55:19 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Remove-AzKustoDatabasePrincipal.Recording.json b/src/Kusto/test/Remove-AzKustoDatabasePrincipal.Recording.json index 9d95df5c7869..23bf44fdace4 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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-unique-id": [ "436" ], + "x-ms-client-request-id": [ "b2a0fbda-c7de-4fc9-80a8-c5ed4637e2f4" ], "CommandName": [ "Get-AzKustoDatabasePrincipal" ], "FullCommandName": [ "Get-AzKustoDatabasePrincipal_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,28 +22,28 @@ "Cache-Control": [ "no-cache" ], "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-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-request-id": [ "75503219-8cbf-4539-94cc-fc7a633b360a" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "499917a1-fcd9-4b73-8eb5-c9f219067e3e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105521Z:499917a1-fcd9-4b73-8eb5-c9f219067e3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:56 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:55:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "459" ], + "Content-Length": [ "464" ], "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\":\"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\":\"Assaf Taubenfeld\",\"role\":\"Admin\",\"type\":\"User\",\"fqn\":\"aaduser=53d8fc23-618e-49fa-ae3f-ae65cc60aa37;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"astauben@microsoft.com\",\"appId\":\"\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/removePrincipals?api-version=2020-06-14", "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}", "Headers": { }, @@ -58,28 +58,28 @@ "Cache-Control": [ "no-cache" ], "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-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-request-id": [ "00f15f2f-0979-4c22-bd37-b4aba6779e34" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "3122379f-2dd4-45d8-8cbe-e6aa49dab359" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105521Z:3122379f-2dd4-45d8-8cbe-e6aa49dab359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:57 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:55:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "222" ], + "Content-Length": [ "227" ], "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\":\"Assaf Taubenfeld\",\"role\":\"Admin\",\"type\":\"User\",\"fqn\":\"aaduser=53d8fc23-618e-49fa-ae3f-ae65cc60aa37;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"astauben@microsoft.com\",\"appId\":\"\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/addPrincipals?api-version=2020-06-14", "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}", "Headers": { }, @@ -94,22 +94,22 @@ "Cache-Control": [ "no-cache" ], "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-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-request-id": [ "cf83b31a-12d7-4263-a59e-aea80917055b" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "5cd4f306-9eb4-484c-9646-1e069a150ef3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105522Z:5cd4f306-9eb4-484c-9646-1e069a150ef3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:57 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:55:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "459" ], + "Content-Length": [ "464" ], "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\":\"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\":\"Assaf Taubenfeld\",\"role\":\"Admin\",\"type\":\"User\",\"fqn\":\"aaduser=53d8fc23-618e-49fa-ae3f-ae65cc60aa37;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"astauben@microsoft.com\",\"appId\":\"\",\"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..d2e82ebacb08 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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": [ "cc87fcd7-bdd0-436c-b377-7fe7a92bce0b" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5c801763-7fea-4183-8a37-69946729c02e?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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-ratelimit-remaining-subscription-resource-requests": [ "199" ], + "x-ms-correlation-request-id": [ "ee026ed7-e34b-422d-a9fa-48ef0174913d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105523Z:ee026ed7-e34b-422d-a9fa-48ef0174913d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:58 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:55:23 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/testdatabase5arkid/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/5c801763-7fea-4183-8a37-69946729c02e?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/5c801763-7fea-4183-8a37-69946729c02e?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-unique-id": [ "439", "440" ], + "x-ms-client-request-id": [ "339ca54a-edce-47cf-b9a0-9ad9def74aa7", "339ca54a-edce-47cf-b9a0-9ad9def74aa7" ], "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": [ "293" ], + "x-ms-request-id": [ "d6a3d7e7-0046-47e8-a873-19c5390034f3" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "d8b490fb-e9e6-4c30-a77c-a1436847b32e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105554Z:d8b490fb-e9e6-4c30-a77c-a1436847b32e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:01:29 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:55:53 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/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/5c801763-7fea-4183-8a37-69946729c02e\",\"name\":\"5c801763-7fea-4183-8a37-69946729c02e\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:55:23.6824748Z\",\"endTime\":\"2020-07-30T10:55:23.7919064Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseAddPrincipals\",\"RootActivityId\":\"a4e5eeee-1b4e-4472-9fb4-9c23a9e17341\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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-unique-id": [ "439", "440", "441" ], + "x-ms-client-request-id": [ "339ca54a-edce-47cf-b9a0-9ad9def74aa7", "339ca54a-edce-47cf-b9a0-9ad9def74aa7", "339ca54a-edce-47cf-b9a0-9ad9def74aa7" ], "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": [ "eebcc901-0464-49c4-a274-6dbb3e69d88d" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "9fb31887-fe40-4677-b6f4-f80b62614b58" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105554Z:9fb31887-fe40-4677-b6f4-f80b62614b58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:01:30 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:55:53 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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-unique-id": [ "442" ], + "x-ms-client-request-id": [ "fcec8462-5e38-4c36-a3b5-65abdff16aa2" ], "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/2f7a6c8b-5c57-466d-9cae-6430e62dee1b?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/2f7a6c8b-5c57-466d-9cae-6430e62dee1b?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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-ratelimit-remaining-subscription-deletes": [ "14997" ], + "x-ms-request-id": [ "70cdfdd9-6767-4acf-a15f-838524214c47" ], + "x-ms-correlation-request-id": [ "70cdfdd9-6767-4acf-a15f-838524214c47" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105555Z:70cdfdd9-6767-4acf-a15f-838524214c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:01:30 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:55:54 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/2f7a6c8b-5c57-466d-9cae-6430e62dee1b?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/2f7a6c8b-5c57-466d-9cae-6430e62dee1b?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-unique-id": [ "442", "443" ], + "x-ms-client-request-id": [ "fcec8462-5e38-4c36-a3b5-65abdff16aa2", "fcec8462-5e38-4c36-a3b5-65abdff16aa2" ], "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": [ "292" ], + "x-ms-request-id": [ "fd97a7f6-6f8e-4563-8985-5d4a5d4e9034" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "cc94b87a-e42e-4637-8502-2ce656f0e22c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105625Z:cc94b87a-e42e-4637-8502-2ce656f0e22c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:02:00 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:56:24 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/2f7a6c8b-5c57-466d-9cae-6430e62dee1b\",\"name\":\"2f7a6c8b-5c57-466d-9cae-6430e62dee1b\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:55:55.0295074Z\",\"endTime\":\"2020-07-30T10:55:55.1232688Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDropPrincipals\",\"RootActivityId\":\"7df1ad6c-1ac3-45fe-a5c3-fdd52c606bb7\",\"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/2f7a6c8b-5c57-466d-9cae-6430e62dee1b?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/2f7a6c8b-5c57-466d-9cae-6430e62dee1b?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-unique-id": [ "442", "443", "444" ], + "x-ms-client-request-id": [ "fcec8462-5e38-4c36-a3b5-65abdff16aa2", "fcec8462-5e38-4c36-a3b5-65abdff16aa2", "fcec8462-5e38-4c36-a3b5-65abdff16aa2" ], "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": [ "c0aacffb-3ccd-48fd-ade5-1fc2b97fd030" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "291" ], + "x-ms-correlation-request-id": [ "4ba258f4-a44c-4b9f-a090-429fe96a5651" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105625Z:4ba258f4-a44c-4b9f-a090-429fe96a5651" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:02:00 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:56:24 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Start-AzKustoCluster.Recording.json b/src/Kusto/test/Start-AzKustoCluster.Recording.json index ce9faf2938f7..439982df2b6b 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/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-unique-id": [ "449" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721" ], "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "b75da5cd-23ba-481c-80f0-bece4913d3ac" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-correlation-request-id": [ "527bd0eb-452f-4f77-a852-e22242b1431f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105659Z:527bd0eb-452f-4f77-a852-e22242b1431f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:03:04 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:56:58 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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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-unique-id": [ "449", "450" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "8dc333e4-ba59-40a0-b48a-521f1bcb30ce" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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-correlation-request-id": [ "f6133bd3-4770-4474-a59d-62be22bff3dc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105729Z:f6133bd3-4770-4474-a59d-62be22bff3dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:03:34 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:57:29 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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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-unique-id": [ "449", "450", "451" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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": [ "288" ], + "x-ms-request-id": [ "fe972a6b-ead0-4e6d-8094-a40f6c4d04cc" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "4a6c7896-e92f-4af0-a388-ce46b2c5b516" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105800Z:4a6c7896-e92f-4af0-a388-ce46b2c5b516" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:04:04 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:57:59 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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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-unique-id": [ "449", "450", "451", "452" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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": [ "287" ], + "x-ms-request-id": [ "f891d192-771a-4c98-874b-69a548d766d0" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "0957629a-8c94-477c-a4da-f674aafbcab1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105830Z:0957629a-8c94-477c-a4da-f674aafbcab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:04:35 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:58:30 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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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-unique-id": [ "449", "450", "451", "452", "453" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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": [ "286" ], + "x-ms-request-id": [ "ed8f31c9-c37e-4275-a249-0dec6dd6f2ab" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "33cba3c2-1d55-41ce-abe0-7a22034fe262" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105902Z:33cba3c2-1d55-41ce-abe0-7a22034fe262" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:05:05 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:59:01 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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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-unique-id": [ "449", "450", "451", "452", "453", "454" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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-correlation-request-id": [ "723e6641-9f68-47a8-84bb-a26cfe986a88" ], + "x-ms-request-id": [ "9eb658aa-f47c-4e8b-9bbd-5e8d6ec7921d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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-routing-request-id": [ "NORTHEUROPE:20200730T105932Z:723e6641-9f68-47a8-84bb-a26cfe986a88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:05:35 GMT" ] + "Date": [ "Thu, 30 Jul 2020 10:59:31 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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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-unique-id": [ "449", "450", "451", "452", "453", "454", "455" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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": [ "288" ], + "x-ms-request-id": [ "c003e0e1-a5fd-4f06-98fb-93c552d7e16e" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "8d097bae-8438-49d5-b086-fa639943dd46" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110003Z:8d097bae-8438-49d5-b086-fa639943dd46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:06:06 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:00:02 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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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-unique-id": [ "449", "450", "451", "452", "453", "454", "455", "456" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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": [ "287" ], + "x-ms-request-id": [ "f97dc4dd-77bd-43df-bf99-0f0e0030c490" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "6b6c9574-80b3-444d-9de5-4c90241b4ccc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110033Z:6b6c9574-80b3-444d-9de5-4c90241b4ccc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:06:36 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:00:32 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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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-unique-id": [ "449", "450", "451", "452", "453", "454", "455", "456", "457" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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": [ "286" ], + "x-ms-request-id": [ "16e3fb72-a05e-4684-a2ce-33e759b03b55" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "33f28a1b-fc79-4f45-a027-fc5eb7a39383" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110103Z:33f28a1b-fc79-4f45-a027-fc5eb7a39383" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:07:06 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:01:03 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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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-unique-id": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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": [ "285" ], + "x-ms-request-id": [ "7ecc9466-b123-4be9-97c4-482d4469f912" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "3b7d1336-c27c-4f91-81b8-7656ba021802" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110134Z:3b7d1336-c27c-4f91-81b8-7656ba021802" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:07:37 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:01:33 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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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-unique-id": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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": [ "284" ], + "x-ms-request-id": [ "30d344ee-5ddb-420b-a771-8281e4acc6bd" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "ede46f1e-b11a-4f96-8ee0-55a0579a7ef3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110204Z:ede46f1e-b11a-4f96-8ee0-55a0579a7ef3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:08:07 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:02:03 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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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-unique-id": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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": [ "283" ], + "x-ms-request-id": [ "67b423e3-8eea-4579-b921-38758ae8fa24" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "b445b4e9-6d4a-4047-a6b2-5ae4361bf5ab" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110234Z:b445b4e9-6d4a-4047-a6b2-5ae4361bf5ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:08:38 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:02:33 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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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-unique-id": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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": [ "282" ], + "x-ms-request-id": [ "97fb1031-95b0-4cb2-a1e9-6e0c6edc2525" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "3a3b17b2-63d2-4f59-8fc4-6d8dde5b5345" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110304Z:3a3b17b2-63d2-4f59-8fc4-6d8dde5b5345" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:09:08 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:03: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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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-unique-id": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "948ca30c-275d-43b0-b23f-be595eea935f" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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-correlation-request-id": [ "48d5bb7f-a3ba-4e14-8427-5895ca7af264" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110335Z:48d5bb7f-a3ba-4e14-8427-5895ca7af264" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:09:38 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:03:34 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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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-unique-id": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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": [ "280" ], + "x-ms-request-id": [ "ca129399-f115-4b97-92fe-5bf566402341" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "64be172a-c0f1-4cb2-8a91-fd89a2812473" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110405Z:64be172a-c0f1-4cb2-8a91-fd89a2812473" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:10:08 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:04: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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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-unique-id": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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": [ "279" ], + "x-ms-request-id": [ "196deae6-2253-4a94-abab-e0d2f4e09769" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "f4452965-0530-473f-a0fb-9c262ed0f3ab" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110435Z:f4452965-0530-473f-a0fb-9c262ed0f3ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:10:39 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:04:34 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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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-unique-id": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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": [ "289" ], + "x-ms-request-id": [ "ad14b06b-3316-433d-a375-ffd2d6b87bf0" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "8766e811-671a-4c73-9275-0476dc28c551" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110505Z:8766e811-671a-4c73-9275-0476dc28c551" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:11:10 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:05: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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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+18": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?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/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/683f1ec7-c164-48c0-8199-862a4eb70529?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", "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-unique-id": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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" ], @@ -719,32 +719,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "93e96d4a-9977-4d6b-80c6-1eaba6fd600c" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131141Z:862d6c25-2a0a-4fdc-8ba9-f996cca5d2fb" ], + "x-ms-correlation-request-id": [ "6278934b-aca3-411d-8b68-0768774dbd23" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110536Z:6278934b-aca3-411d-8b68-0768774dbd23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:11:41 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:05: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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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+19": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?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/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/683f1ec7-c164-48c0-8199-862a4eb70529?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", "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" ], + "x-ms-unique-id": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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" ], @@ -760,32 +760,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "35f9f183-d244-4a41-82fc-e57df5ddd964" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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" ], + "x-ms-correlation-request-id": [ "90e36f41-2fc8-41c6-8b4f-1a72819bcdbe" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110606Z:90e36f41-2fc8-41c6-8b4f-1a72819bcdbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:12:11 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:06:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "466" ], + "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\":\"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\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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\u0026operationResultResponseType=Location+20": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?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/fb638e02-6713-41e7-be39-6b83774396a4?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/683f1ec7-c164-48c0-8199-862a4eb70529?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", "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" ], + "x-ms-unique-id": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467", "468" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], "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" ], @@ -800,76 +800,78 @@ "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" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-correlation-request-id": [ "013c6fa1-b81b-4a14-bc67-3a3413920cef" ], + "x-ms-request-id": [ "dae114e8-df28-4152-a63e-8d5f30849534" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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-routing-request-id": [ "NORTHEUROPE:20200730T110636Z:013c6fa1-b81b-4a14-bc67-3a3413920cef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:12:12 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:06:36 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "493" ], + "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "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+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+21": { "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", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], - "CommandName": [ "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "449", "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": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "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" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "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" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "4becd043-2d16-4c89-8e45-468da107bfc0" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "0956994a-f8df-4236-82dd-423581d46dc3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110707Z:0956994a-f8df-4236-82dd-423581d46dc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:12:12 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:07:06 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "493" ], + "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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+22": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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" ], - "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467", "468", "469", "470" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "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" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -881,36 +883,36 @@ "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": [ "284" ], + "x-ms-request-id": [ "acc60d0f-1264-4296-8271-268eb58d9184" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "70f8e829-e4b0-45f8-8079-ae0ef16dd4e3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110740Z:70f8e829-e4b0-45f8-8079-ae0ef16dd4e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:12:42 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:07: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/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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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" ], - "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467", "468", "469", "470", "471" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "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": { @@ -922,36 +924,36 @@ "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": [ "283" ], + "x-ms-request-id": [ "f9e646f4-b443-46d3-9ea8-9fd214cef1cb" ], + "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": [ "459271dc-be9f-4860-9781-0f8f73f1094d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110811Z:459271dc-be9f-4860-9781-0f8f73f1094d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:13:13 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:08:11 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/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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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" ], - "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467", "468", "469", "470", "471", "472" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "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" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -963,36 +965,36 @@ "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": [ "282" ], + "x-ms-request-id": [ "2954dcc5-ddec-4b45-a2ac-768c8cb2d266" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "099e5786-200e-4a78-9d51-37d8071d277e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110843Z:099e5786-200e-4a78-9d51-37d8071d277e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:13:43 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:08:42 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/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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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" ], - "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467", "468", "469", "470", "471", "472", "473" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "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", "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", "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", "__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": { @@ -1004,36 +1006,36 @@ "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": [ "281" ], + "x-ms-request-id": [ "de68ef5e-7566-43cf-9a1d-d6a999afe6d6" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "9bcc48c0-95af-4b36-8c49-a85058641e7f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110916Z:9bcc48c0-95af-4b36-8c49-a85058641e7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:14:13 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:09:16 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/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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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/683f1ec7-c164-48c0-8199-862a4eb70529?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/683f1ec7-c164-48c0-8199-862a4eb70529?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" ], - "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467", "468", "469", "470", "471", "472", "473", "474" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "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", "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", "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", "__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": { @@ -1045,36 +1047,36 @@ "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": [ "280" ], + "x-ms-request-id": [ "8d7a22c3-de30-4d5b-a0d0-c4a75cb66f49" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "18a1c97d-13a4-4573-bbf9-99bd58ff5c7a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110946Z:18a1c97d-13a4-4573-bbf9-99bd58ff5c7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:14:45 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:09:46 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/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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T11:09:40.7150558Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"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+27": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14\u0026operationResultResponseType=Location+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14\u0026operationResultResponseType=Location", "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" ], - "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467", "468", "469", "470", "471", "472", "473", "474", "475" ], + "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "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", "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", "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", "__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": { @@ -1085,78 +1087,76 @@ "Headers": { "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-request-id": [ "93c65b28-07cd-4744-9573-247ea09d5b0a" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-correlation-request-id": [ "78fcd9a3-fce8-47f8-8bd6-8b61b73e2138" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110947Z:78fcd9a3-fce8-47f8-8bd6-8b61b73e2138" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:15:16 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:09:46 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/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": 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+28": { + "Start-AzKustoCluster+[NoContext]+Start+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/start?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", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/start?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" ], - "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": [ "476" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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-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" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "344dd837-70a3-43da-aaf6-46303186a033" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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-ratelimit-remaining-subscription-writes": [ "1195" ], + "x-ms-correlation-request-id": [ "7ce07d99-6f03-4874-aaac-f6b7cc8788a7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110950Z:7ce07d99-6f03-4874-aaac-f6b7cc8788a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:15:47 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:09:50 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/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": 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+29": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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" ], - "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": [ "476", "477" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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": { @@ -1168,36 +1168,36 @@ "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": [ "288" ], + "x-ms-request-id": [ "0e0c86ef-e5f7-414d-bd3f-ed9e4fd693bf" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "636c13ca-00c8-477b-922f-88ad6d86e5ba" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111021Z:636c13ca-00c8-477b-922f-88ad6d86e5ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:16:17 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:10:21 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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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" ], - "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" ], + "x-ms-unique-id": [ "476", "477", "478" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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": { @@ -1209,36 +1209,36 @@ "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-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "101a338b-d2a8-487d-9df3-d45f64b7c393" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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-correlation-request-id": [ "e040b9df-0737-4a94-a8c4-01f162a642b8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111052Z:e040b9df-0737-4a94-a8c4-01f162a642b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:16:47 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:10:51 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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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" ], - "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" ], + "x-ms-unique-id": [ "476", "477", "478", "479" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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": { @@ -1250,36 +1250,36 @@ "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": [ "286" ], + "x-ms-request-id": [ "d7f4b8f1-92b5-400b-ad79-c86ba96bced4" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "45350d35-2dd8-424a-afdb-261d2ef0021a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111122Z:45350d35-2dd8-424a-afdb-261d2ef0021a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:17:18 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:11:22 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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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" ], - "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" ], + "x-ms-unique-id": [ "476", "477", "478", "479", "480" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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": { @@ -1291,36 +1291,36 @@ "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": [ "285" ], + "x-ms-request-id": [ "c636957c-14db-4bef-b5c5-44455b9e6b02" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "34a32210-e229-422b-9f77-9467235a36ce" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111153Z:34a32210-e229-422b-9f77-9467235a36ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:17:48 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:11:52 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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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" ], - "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" ], + "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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": { @@ -1332,36 +1332,36 @@ "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": [ "284" ], + "x-ms-request-id": [ "ef9658d2-fc6d-4516-9d87-c256b17a9c36" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "7fd1555f-e6f9-4ad6-bc07-c69e0857079b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111223Z:7fd1555f-e6f9-4ad6-bc07-c69e0857079b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:18:18 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:12:22 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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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" ], - "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" ], + "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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": { @@ -1373,36 +1373,36 @@ "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": [ "283" ], + "x-ms-request-id": [ "28e3fff4-eb93-4229-a8c2-bbff187d2bff" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "84feb009-c906-4822-8da7-7d1a42bd0c91" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111255Z:84feb009-c906-4822-8da7-7d1a42bd0c91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:18:48 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:12:55 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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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" ], - "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" ], + "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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": { @@ -1414,36 +1414,36 @@ "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-correlation-request-id": [ "3571a11f-6f93-4dd3-b635-0d5aa18150a4" ], + "x-ms-request-id": [ "d68cf0d8-1cfd-4eaa-97a7-3f3d514e0713" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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-routing-request-id": [ "NORTHEUROPE:20200730T111331Z:3571a11f-6f93-4dd3-b635-0d5aa18150a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:19:19 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:13:30 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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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" ], - "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" ], + "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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": { @@ -1455,36 +1455,36 @@ "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": [ "281" ], + "x-ms-request-id": [ "983d6691-1707-44d3-bf2f-c7b68ab8b421" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "5359f1ef-1256-4f9b-801e-0eff78bc170f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111402Z:5359f1ef-1256-4f9b-801e-0eff78bc170f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:19:49 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:14: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/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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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" ], - "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" ], + "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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": { @@ -1496,36 +1496,36 @@ "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": [ "280" ], + "x-ms-request-id": [ "7852f592-6cb1-4590-b209-95c2f40f4529" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "339b39ae-fe88-45e3-b9ad-291488e0f931" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111432Z:339b39ae-fe88-45e3-b9ad-291488e0f931" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:20:20 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:14:32 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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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+38": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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", "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" ], - "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" ], + "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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": { @@ -1537,36 +1537,36 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], + "x-ms-request-id": [ "f00d60ac-e1f6-41b0-8a65-fdb2438bab89" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132050Z:406af92e-7f10-4a9d-ae57-3aa66dcd5658" ], + "x-ms-correlation-request-id": [ "e7beaa71-c8d5-40cd-8b55-963e63438f34" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111508Z:e7beaa71-c8d5-40cd-8b55-963e63438f34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:20:50 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:15:08 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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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+39": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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", "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" ], + "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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": { @@ -1578,36 +1578,36 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "9ad4226a-0d06-45f6-a0cd-b8d17000e810" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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" ], + "x-ms-correlation-request-id": [ "32d3ee1b-613d-4b5e-8c45-4f85caba6122" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111539Z:32d3ee1b-613d-4b5e-8c45-4f85caba6122" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:21:21 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:15: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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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+40": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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", "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" ], + "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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": { @@ -1619,36 +1619,77 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "7a02ef0c-b977-45b6-b611-cd4629964ddf" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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" ], + "x-ms-correlation-request-id": [ "e36ea7c2-e1fa-4c8d-a32d-8a526fdc8787" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111610Z:e36ea7c2-e1fa-4c8d-a32d-8a526fdc8787" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:21:51 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:16:09 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/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\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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\u0026operationResultResponseType=Location+41": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/58878a97-1cad-4962-82e0-9966c4f972fb?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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", "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" ], + "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488", "489" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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": [ "287" ], + "x-ms-request-id": [ "c97623de-da45-4549-b098-ca9a2f49943b" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "99e8a3d7-b9ee-4fdd-a0ca-8af5628b4d25" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111640Z:99e8a3d7-b9ee-4fdd-a0ca-8af5628b4d25" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 11:16:40 GMT" ] + }, + "ContentHeaders": { + "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488", "489", "490" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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": { @@ -1659,15 +1700,179 @@ "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" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "867ffd00-f124-48b5-b1f8-2b42a35eaddd" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "92284fec-8bf9-464f-8edd-dfa6b4d7e74a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111710Z:92284fec-8bf9-464f-8edd-dfa6b4d7e74a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 11:17:09 GMT" ] + }, + "ContentHeaders": { + "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488", "489", "490", "491" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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": [ "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-request-id": [ "d3d9a616-eea0-4ef0-9efd-802627fa0607" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "e3fde608-685d-4b2e-9d50-c360e5347cb8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111740Z:e3fde608-685d-4b2e-9d50-c360e5347cb8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 11:17:40 GMT" ] + }, + "ContentHeaders": { + "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488", "489", "490", "491", "492" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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": [ "284" ], + "x-ms-request-id": [ "516b0289-9aba-4fdd-a14f-9a3e037a9048" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "d5f98fc0-db53-435d-b731-8271d1752e23" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111811Z:d5f98fc0-db53-435d-b731-8271d1752e23" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 11:18:10 GMT" ] + }, + "ContentHeaders": { + "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488", "489", "490", "491", "492", "493" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "3f057776-839b-4267-90e3-3c469c760b42" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "553be272-4319-4f9f-bccc-7f9eef96bb0e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111841Z:553be272-4319-4f9f-bccc-7f9eef96bb0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:21:51 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:18:41 GMT" ] + }, + "ContentHeaders": { + "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:18:14.0819365Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14\u0026operationResultResponseType=Location+46": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488", "489", "490", "491", "492", "493", "494" ], + "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], + "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" ], + "x-ms-request-id": [ "b95159eb-d155-4c5c-a498-9c9ca328dc7c" ], + "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": [ "a319d2d9-a1e2-44b5-9191-7e180e12fe41" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111841Z:a319d2d9-a1e2-44b5-9191-7e180e12fe41" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 11:18:41 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1676,14 +1881,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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z?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": [ "495" ], + "x-ms-client-request-id": [ "2f9b86e7-d45c-40ed-85b1-914e26d57d8c" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1701,31 +1906,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": [ "db1609f2-d889-478a-8027-e876122caa80" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "45727681-aef0-4cbd-a873-b4e1c81448f0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111842Z:45727681-aef0-4cbd-a873-b4e1c81448f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:21:51 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:18:41 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z\",\"name\":\"testcluster0whu7z\",\"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://testcluster0whu7z.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster0whu7z.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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/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": [ "496" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "CommandName": [ "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1740,17 +1945,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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "4edf99da-f634-48e0-bd44-641c9a756553" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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-ratelimit-remaining-subscription-writes": [ "1194" ], + "x-ms-correlation-request-id": [ "073921c9-a351-40be-ba69-aa0eaa9115a9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111842Z:073921c9-a351-40be-ba69-aa0eaa9115a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:21:51 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:18:42 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1759,14 +1964,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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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": [ "496", "497" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -1782,32 +1987,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": [ "281" ], + "x-ms-request-id": [ "0f560874-e86a-45e5-9685-435329e7b68b" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "c16eacaa-cd3b-4520-9205-ad8d26b5a4d0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111912Z:c16eacaa-cd3b-4520-9205-ad8d26b5a4d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:22:21 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:19:12 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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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": [ "496", "497", "498" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1823,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": [ "43cad03c-6122-4521-aad5-4438facf5c0b" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "a911d8e5-d3a1-4395-8c6b-e9201703ae51" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "ef72d00c-5c1a-4d8d-9f1e-1730c04e7ab2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111943Z:ef72d00c-5c1a-4d8d-9f1e-1730c04e7ab2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:22:52 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:19:42 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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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": [ "496", "497", "498", "499" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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 +2069,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": [ "4ce312a7-5a12-41a7-a7f1-f0fd7e5a028e" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "76308a10-aafa-4332-9013-03198c7a90bd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112013Z:76308a10-aafa-4332-9013-03198c7a90bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:23:23 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:20:12 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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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": [ "496", "497", "498", "499", "500" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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 +2110,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-correlation-request-id": [ "099a2eac-9433-466f-aafd-b421451413e2" ], + "x-ms-request-id": [ "71260063-d525-4b47-bee9-9ac03f248428" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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-routing-request-id": [ "NORTHEUROPE:20200730T112043Z:099a2eac-9433-466f-aafd-b421451413e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:23:52 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:20:42 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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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": [ "496", "497", "498", "499", "500", "501" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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 +2151,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-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "9b23ff6d-a04a-41dc-ab08-20ab5eb46be3" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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-correlation-request-id": [ "5eb282af-b86d-41b1-9efb-be848b4d0b93" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112114Z:5eb282af-b86d-41b1-9efb-be848b4d0b93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:24:24 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:21:13 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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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": [ "496", "497", "498", "499", "500", "501", "502" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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 +2192,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": [ "8ceaf924-706f-4fb4-a4e7-41d64688cbd2" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "8800775c-65c1-4e3c-be0c-88ea798836cb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112144Z:8800775c-65c1-4e3c-be0c-88ea798836cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:24:53 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:21:43 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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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": [ "496", "497", "498", "499", "500", "501", "502", "503" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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 +2233,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": [ "f02ed7e7-9408-4646-9588-15ace5471746" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "e8fdadc8-9f6c-4135-92ef-59471a097953" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112214Z:e8fdadc8-9f6c-4135-92ef-59471a097953" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:25:23 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:22:14 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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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 +2274,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": [ "3cdb39cc-d4c7-497d-94ea-4e63f55c98f2" ], + "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": [ "8dd8d7ff-59b5-46b0-8ce6-13774638f9da" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112245Z:8dd8d7ff-59b5-46b0-8ce6-13774638f9da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:25:54 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:22: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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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 +2315,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": [ "fe26e12b-eb9e-4d96-aa03-f7e44f36f540" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "e6921a7d-ed77-43a2-9126-072811c5e005" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112315Z:e6921a7d-ed77-43a2-9126-072811c5e005" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:26:24 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:23:14 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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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 +2356,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": [ "f8fab3a3-652d-4a44-a86a-cd1e3f7e5277" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "1b9d7af0-dd01-4ab6-8bc2-691b47f76143" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112345Z:1b9d7af0-dd01-4ab6-8bc2-691b47f76143" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:26:55 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:23: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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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 +2397,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": [ "1dc949da-f4d0-42bd-965e-aa2b3e767811" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "2576f288-390d-4bd2-8827-eaeda3107833" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112415Z:2576f288-390d-4bd2-8827-eaeda3107833" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:27:25 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:24: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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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 +2438,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": [ "778b04c4-c279-45ee-888c-babcb5e1394d" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "fc5b776a-981b-49c0-88f0-254c907721e4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112446Z:fc5b776a-981b-49c0-88f0-254c907721e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:27:55 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:24: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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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+15": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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" ], - "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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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" ], @@ -2274,32 +2479,32 @@ "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-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "2610a4f9-734b-436c-8d84-ef361590921b" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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-correlation-request-id": [ "94f5f69b-229c-4b20-a66d-ee824fbd99ff" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112516Z:94f5f69b-229c-4b20-a66d-ee824fbd99ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:28:26 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:25: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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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+16": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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" ], + "x-ms-unique-id": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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" ], @@ -2315,32 +2520,32 @@ "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" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "2a1e4d57-5282-4645-9686-f7660f943042" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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-correlation-request-id": [ "841b67c1-db43-4eef-8e0b-6886453e0129" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112546Z:841b67c1-db43-4eef-8e0b-6886453e0129" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:28:56 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:25: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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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+17": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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" ], + "x-ms-unique-id": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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" ], @@ -2356,32 +2561,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "ac119746-c9ce-4528-8955-39fa557c96d8" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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" ], + "x-ms-correlation-request-id": [ "609913a2-9e1c-4b96-a9df-7d6bb8d3813e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112616Z:609913a2-9e1c-4b96-a9df-7d6bb8d3813e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:29:27 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:26: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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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+18": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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" ], - "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" ], + "x-ms-unique-id": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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" ], @@ -2397,32 +2602,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "da856ad8-9a1a-44b2-8a63-715785b9457b" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132958Z:371c8181-d04e-4e23-a094-9e9cfa868758" ], + "x-ms-correlation-request-id": [ "09c27b11-ec43-4cb7-bc0f-ea1696a0664a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112647Z:09c27b11-ec43-4cb7-bc0f-ea1696a0664a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:29:57 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:26: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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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+19": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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" ], - "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" ], + "x-ms-unique-id": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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" ], @@ -2438,32 +2643,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "d6b4b071-bfe3-4df9-bd40-fc6d3b023117" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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" ], + "x-ms-correlation-request-id": [ "925f9d0e-495f-47b0-941d-f25670d9e109" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112717Z:925f9d0e-495f-47b0-941d-f25670d9e109" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:30:27 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:27: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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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+20": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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" ], - "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" ], + "x-ms-unique-id": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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" ], @@ -2479,32 +2684,32 @@ "Cache-Control": [ "no-cache" ], "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-correlation-request-id": [ "048c1967-9bf5-4fa2-8bca-ae2f676d3f3b" ], + "x-ms-request-id": [ "4fb8b348-68c1-41bb-ab86-3f15b69be81d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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-routing-request-id": [ "NORTHEUROPE:20200730T112747Z:048c1967-9bf5-4fa2-8bca-ae2f676d3f3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:30:58 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:27: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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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" ], + "x-ms-unique-id": [ "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": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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" ], @@ -2520,32 +2725,32 @@ "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-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "c5ed2129-e1e6-4025-90ed-54d58589e4de" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "939f971a-0fbd-4595-8702-2fd19d26e700" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112818Z:939f971a-0fbd-4595-8702-2fd19d26e700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:31:28 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:28: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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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" ], + "x-ms-unique-id": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514", "515", "516" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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" ], @@ -2561,32 +2766,32 @@ "Cache-Control": [ "no-cache" ], "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-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "1706fc28-221b-44aa-84a1-ca1cf41ef3b9" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "068d24e3-cd23-4c72-9173-728e41b29042" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112848Z:068d24e3-cd23-4c72-9173-728e41b29042" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:31:59 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:28:47 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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:28:20.8113629Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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+23": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14\u0026operationResultResponseType=Location+23": { "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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", "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" ], + "x-ms-unique-id": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514", "515", "516", "517" ], + "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], "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" ], @@ -2601,78 +2806,76 @@ "Headers": { "Cache-Control": [ "no-cache" ], "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": [ "88ced1b0-bd15-4a49-9feb-2793e7125d9d" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-correlation-request-id": [ "c8e144f4-2461-433d-a9ec-78a1194f140e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112848Z:c8e144f4-2461-433d-a9ec-78a1194f140e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:32:29 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:28:47 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+24": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/start?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/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/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", "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": [ "518" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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-correlation-request-id": [ "3d62c3c4-3d6b-4bcb-8664-9c8fc2639b1f" ], - "x-ms-request-id": [ "9e3b2798-04f5-44ed-83d8-ad24aa7f6b26" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "2c1e44dc-3462-44df-a573-1e348c7b2925" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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-ratelimit-remaining-subscription-writes": [ "1193" ], + "x-ms-correlation-request-id": [ "de8ac61d-d0d0-4aaa-b7db-4f18aa6f3132" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112849Z:de8ac61d-d0d0-4aaa-b7db-4f18aa6f3132" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:32:59 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:28:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], - "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\":\"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": 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\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/af8aed82-c767-4e08-b45c-7a02f55964de?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/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/af8aed82-c767-4e08-b45c-7a02f55964de?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": [ "518", "519" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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": { @@ -2683,154 +2886,74 @@ "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" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "9022c6d0-f763-4d97-b135-190106cb9d41" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "a154fe45-be87-40d6-b17b-b816d05b5cd1" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133300Z:a154fe45-be87-40d6-b17b-b816d05b5cd1" ], + "x-ms-correlation-request-id": [ "7b440db1-70a7-4ba2-b80f-4fd7ff1b9587" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112919Z:7b440db1-70a7-4ba2-b80f-4fd7ff1b9587" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:33:00 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:29:19 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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "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": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+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", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "518", "519", "520" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "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" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "3db12317-378d-4b22-b56a-4293b30116e7" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "6a70a7df-d277-4590-8b52-198fd3b4774b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112949Z:6a70a7df-d277-4590-8b52-198fd3b4774b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:33:00 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:29:49 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null - } - }, - "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": { - "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" ], - "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" ], - "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": [ "5cd2f982-af92-45a9-a4c1-6b25443bceb4" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:33:30 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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"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/af8aed82-c767-4e08-b45c-7a02f55964de?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/af8aed82-c767-4e08-b45c-7a02f55964de?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" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "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-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133401Z:7ee5981f-b30c-471e-8bee-c62294a4975e" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:34:01 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+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", - "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" ], + "x-ms-unique-id": [ "518", "519", "520", "521" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], "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" ], @@ -2846,32 +2969,32 @@ "Cache-Control": [ "no-cache" ], "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-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "093c23c0-7aa2-42f0-a29c-421de4e73986" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "f3c00199-c9e3-42e0-bac5-1bee2b675048" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113019Z:f3c00199-c9e3-42e0-bac5-1bee2b675048" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:34:32 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:30:19 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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"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/af8aed82-c767-4e08-b45c-7a02f55964de?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/af8aed82-c767-4e08-b45c-7a02f55964de?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" ], + "x-ms-unique-id": [ "518", "519", "520", "521", "522" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], "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" ], @@ -2887,32 +3010,32 @@ "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": [ "287" ], + "x-ms-request-id": [ "196b0226-32a9-4dc7-852f-ee6c065861df" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "3fec7192-9228-4855-be75-6bc88d347d8b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113050Z:3fec7192-9228-4855-be75-6bc88d347d8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:35:01 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:30:49 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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"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/af8aed82-c767-4e08-b45c-7a02f55964de?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/af8aed82-c767-4e08-b45c-7a02f55964de?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" ], + "x-ms-unique-id": [ "518", "519", "520", "521", "522", "523" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], "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" ], @@ -2928,32 +3051,32 @@ "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": [ "286" ], + "x-ms-request-id": [ "ac71d1fa-2fb0-4229-803e-d90dae0173dc" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "cea7bacb-e1f5-4696-8072-14338b069f7d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113120Z:cea7bacb-e1f5-4696-8072-14338b069f7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:35:32 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:31:19 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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"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/af8aed82-c767-4e08-b45c-7a02f55964de?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/af8aed82-c767-4e08-b45c-7a02f55964de?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" ], + "x-ms-unique-id": [ "518", "519", "520", "521", "522", "523", "524" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], "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" ], @@ -2969,32 +3092,32 @@ "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": [ "285" ], + "x-ms-request-id": [ "4c745815-7049-422d-9090-3721d4ecfb56" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "a7d2b126-97f1-4be3-9cec-6339faf1d10e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113150Z:a7d2b126-97f1-4be3-9cec-6339faf1d10e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:36:02 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:31:50 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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"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/af8aed82-c767-4e08-b45c-7a02f55964de?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/af8aed82-c767-4e08-b45c-7a02f55964de?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" ], + "x-ms-unique-id": [ "518", "519", "520", "521", "522", "523", "524", "525" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], "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" ], @@ -3010,32 +3133,32 @@ "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": [ "284" ], + "x-ms-request-id": [ "7fff05c9-eac2-4c58-baf1-9303231516eb" ], + "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": [ "237d47d7-3851-41c6-bb0e-48e5d7a5d2e3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113220Z:237d47d7-3851-41c6-bb0e-48e5d7a5d2e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:36:33 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:32:20 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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"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/af8aed82-c767-4e08-b45c-7a02f55964de?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/af8aed82-c767-4e08-b45c-7a02f55964de?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" ], + "x-ms-unique-id": [ "518", "519", "520", "521", "522", "523", "524", "525", "526" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], "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" ], @@ -3051,32 +3174,32 @@ "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": [ "283" ], + "x-ms-request-id": [ "7731654d-69f8-45c7-9e7a-b5374a03d0da" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "4abe1135-765f-43d7-99c0-2405798194f9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113251Z:4abe1135-765f-43d7-99c0-2405798194f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:37:03 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:32:50 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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"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/af8aed82-c767-4e08-b45c-7a02f55964de?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/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/af8aed82-c767-4e08-b45c-7a02f55964de?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" ], + "x-ms-unique-id": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], "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" ], @@ -3092,32 +3215,32 @@ "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": [ "282" ], + "x-ms-request-id": [ "6a3a5fff-230d-45ed-b413-a28517937fdd" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "75a33d95-a66d-4e93-bd35-8d13ab15d2c2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113321Z:75a33d95-a66d-4e93-bd35-8d13ab15d2c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:37:34 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:33:21 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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"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/af8aed82-c767-4e08-b45c-7a02f55964de?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/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/af8aed82-c767-4e08-b45c-7a02f55964de?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" ], + "x-ms-unique-id": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], "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" ], @@ -3133,32 +3256,32 @@ "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": [ "281" ], + "x-ms-request-id": [ "90849871-f5cd-435d-a61c-aef6a49adaa4" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "80222358-8f0f-42bc-a2c9-d70237828b47" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113351Z:80222358-8f0f-42bc-a2c9-d70237828b47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:38:04 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:33: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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"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+37": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?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/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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], "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" ], @@ -3174,32 +3297,32 @@ "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-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "b3f5ce78-4190-4a87-aff5-7aecb67031ac" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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" ], + "x-ms-correlation-request-id": [ "972c4499-dc28-4a0b-8860-d3ce47e679f0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113421Z:972c4499-dc28-4a0b-8860-d3ce47e679f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:38:35 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:34:21 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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"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+38": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?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/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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], "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" ], @@ -3215,32 +3338,32 @@ "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-ms-correlation-request-id": [ "c6673378-7931-47fb-bb59-da3eb2523c9d" ], + "x-ms-request-id": [ "9c566051-952b-4632-adfd-2135737675fa" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113452Z:c6673378-7931-47fb-bb59-da3eb2523c9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:39:05 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:34: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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"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+39": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?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/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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], "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" ], @@ -3256,32 +3379,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "4d527055-2b32-479f-afbe-2e2af05b9e57" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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" ], + "x-ms-correlation-request-id": [ "5e90b53b-435f-41fe-b175-f41d7452294a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113522Z:5e90b53b-435f-41fe-b175-f41d7452294a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:39:35 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:35: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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"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+40": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?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/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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], "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" ], @@ -3297,32 +3420,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "1af58463-f0dc-4b8c-9199-e903d72b9355" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134006Z:b3afdd1f-cf53-4ae4-9b6f-100ee39f3314" ], + "x-ms-correlation-request-id": [ "f4bdef2b-befc-47b6-9bee-3ef5c3284a50" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113553Z:f4bdef2b-befc-47b6-9bee-3ef5c3284a50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:40:06 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:35: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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"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+41": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?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/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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], "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" ], @@ -3338,32 +3461,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "75988371-eb23-479e-ad9b-e62ef30ddf57" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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" ], + "x-ms-correlation-request-id": [ "40f50b18-032b-4caf-bb44-340b1656c367" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113623Z:40f50b18-032b-4caf-bb44-340b1656c367" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:40:36 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:36: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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"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+42": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?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/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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533", "534" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], "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" ], @@ -3379,32 +3502,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "4214a00e-abc0-4330-9da5-cf9b5a1a853b" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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" ], + "x-ms-correlation-request-id": [ "a3f48b10-d2d2-47bd-9fd3-ddd5ced5e310" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113653Z:a3f48b10-d2d2-47bd-9fd3-ddd5ced5e310" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:41:06 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:36:53 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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:36:37.3415241Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"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+43": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14\u0026operationResultResponseType=Location+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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?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", "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" ], + "x-ms-unique-id": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533", "534", "535" ], + "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], "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" ], @@ -3419,507 +3542,15 @@ "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-ms-request-id": [ "4bde1fe5-2aec-4a39-80d3-5498fe879123" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "ffa123c2-669d-4c0a-bcee-c6d5fe6614d4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113653Z:ffa123c2-669d-4c0a-bcee-c6d5fe6614d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:47:11 GMT" ] + "Date": [ "Thu, 30 Jul 2020 11:36:53 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Stop-AzKustoCluster.Recording.json b/src/Kusto/test/Stop-AzKustoCluster.Recording.json index 9ef14932644b..3e328f5627dc 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/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": [ "536" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "ce057298-117b-42e2-b0ce-216e495944a7" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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-correlation-request-id": [ "bd4b49ae-77c8-4e07-a9e2-18d24054dc20" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124241Z:bd4b49ae-77c8-4e07-a9e2-18d24054dc20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:36:20 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:42:41 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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": [ "536", "537" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -64,31 +64,31 @@ "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-request-id": [ "72621da5-e788-4583-860e-8cef80bfa259" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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-correlation-request-id": [ "773a109e-6c3d-4b93-8505-f43c5fd07ceb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124312Z:773a109e-6c3d-4b93-8505-f43c5fd07ceb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:36:49 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:43:11 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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": [ "536", "537", "538" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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-request-id": [ "9d10a073-af6e-4430-b90d-36f9187d0fc2" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "df7aec56-22d2-4f6b-805f-61da9cff871f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124342Z:df7aec56-22d2-4f6b-805f-61da9cff871f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:37:20 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:43:41 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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": [ "536", "537", "538", "539" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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" ], @@ -146,31 +146,31 @@ "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-request-id": [ "c62ab4c1-57b6-4d0e-9c69-434258df0624" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "f992d08f-96aa-4e4a-95aa-d8e680fe95e4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124412Z:f992d08f-96aa-4e4a-95aa-d8e680fe95e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:37:50 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:44:11 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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": [ "536", "537", "538", "539", "540" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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" ], @@ -187,31 +187,31 @@ "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-request-id": [ "c4270356-ae19-4771-a7df-1770498be6b0" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "41aa1953-b45f-4050-9a8c-f59cdabfd032" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124442Z:41aa1953-b45f-4050-9a8c-f59cdabfd032" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:38:21 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:44:42 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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": [ "536", "537", "538", "539", "540", "541" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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-request-id": [ "67fc6b7c-d6d9-46b2-9f1e-d0afb3950401" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "d1491098-5e56-4bd6-8933-0f9775b6927c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124513Z:d1491098-5e56-4bd6-8933-0f9775b6927c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:38:51 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:45:12 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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": [ "536", "537", "538", "539", "540", "541", "542" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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" ], @@ -269,31 +269,31 @@ "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-request-id": [ "3a927252-fc32-4a84-94a4-3475aad12ac1" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "ec391a71-a2e3-4a57-9138-fc18b23087c4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124543Z:ec391a71-a2e3-4a57-9138-fc18b23087c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:39:22 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:45:42 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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": [ "536", "537", "538", "539", "540", "541", "542", "543" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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" ], @@ -310,31 +310,31 @@ "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-request-id": [ "21207f85-ea7e-45fd-a6de-5642bfda696c" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "286f6ed1-51bc-4090-b2f3-d6dc32ae136b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124613Z:286f6ed1-51bc-4090-b2f3-d6dc32ae136b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:39:52 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:46:12 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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": [ "536", "537", "538", "539", "540", "541", "542", "543", "544" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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-correlation-request-id": [ "1cc9ddc2-8f76-4a83-b021-f891c39a653d" ], + "x-ms-request-id": [ "2ea940b4-a444-4179-8a11-44696c16bfb8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "292" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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-routing-request-id": [ "NORTHEUROPE:20200730T124643Z:1cc9ddc2-8f76-4a83-b021-f891c39a653d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:40:22 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:46:42 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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" ], @@ -392,31 +392,31 @@ "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-request-id": [ "b3e2a665-bd20-4612-9535-974bbcb06828" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "ccd38068-3e49-47a8-97b0-195210034514" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124714Z:ccd38068-3e49-47a8-97b0-195210034514" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:40:52 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:47:14 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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" ], @@ -433,31 +433,31 @@ "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-request-id": [ "baadc914-09c6-4090-b92a-a6f833d204af" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "c302d5a9-0a75-4006-820a-2fa24d9d8fff" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124744Z:c302d5a9-0a75-4006-820a-2fa24d9d8fff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:41:23 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:47:44 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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-request-id": [ "c4d2f72d-0e7b-430c-b7ee-da8720cac170" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "78dc1a3c-0e84-40c1-975c-7205ffd39c68" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124815Z:78dc1a3c-0e84-40c1-975c-7205ffd39c68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:41:53 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:48:14 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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+13": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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" ], - "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": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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" ], @@ -515,31 +515,31 @@ "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-ms-request-id": [ "c2870fb2-edbc-4168-bce1-2843037cd0c0" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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" ], + "x-ms-correlation-request-id": [ "03fc771c-78da-4c06-964a-2a5622329485" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124845Z:03fc771c-78da-4c06-964a-2a5622329485" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:42:24 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:48:44 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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+14": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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" ], - "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" ], + "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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" ], @@ -556,31 +556,31 @@ "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": [ "7b48e79f-50e6-43e7-aa84-3a9d7023ab62" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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-correlation-request-id": [ "6b6e9b5a-0057-4d06-9533-c90111662b37" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124915Z:6b6e9b5a-0057-4d06-9533-c90111662b37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:42:54 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:49:14 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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+15": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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" ], + "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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": [ "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" ], + "x-ms-request-id": [ "84fad246-e0d2-4da4-9629-8d733d1d050f" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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-correlation-request-id": [ "42ca7b5f-98f2-4094-b4ea-8bc4b7a7fd3d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124945Z:42ca7b5f-98f2-4094-b4ea-8bc4b7a7fd3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:43:25 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:49:45 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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+16": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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" ], + "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550", "551" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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": [ "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": [ "289" ], + "x-ms-request-id": [ "2b352143-ee76-4955-acde-156a77cf98ce" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "16c0203e-2030-4e9b-b71d-20d698cd48b2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125016Z:16c0203e-2030-4e9b-b71d-20d698cd48b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:43:55 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:50: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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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" ], + "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550", "551", "552" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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": [ "284" ], - "x-ms-request-id": [ "901c8d74-d0da-444f-84a4-dc6b4fb7c472" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "53b62b3e-d96c-48b2-b9b5-b8beb746f4e9" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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-correlation-request-id": [ "a1e6d1a4-ccdb-4972-b1ff-343d929af3c7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125046Z:a1e6d1a4-ccdb-4972-b1ff-343d929af3c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:44:25 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:50:45 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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" ], + "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550", "551", "552", "553" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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" ], @@ -719,32 +719,32 @@ "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-correlation-request-id": [ "b39f3342-26dc-4eca-9e5f-5c77c48f46c1" ], + "x-ms-request-id": [ "2711d7ac-88b4-4f76-8874-fddb5260e891" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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-routing-request-id": [ "NORTHEUROPE:20200730T125116Z:b39f3342-26dc-4eca-9e5f-5c77c48f46c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:44:55 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:51: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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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" ], + "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550", "551", "552", "553", "554" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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" ], @@ -760,32 +760,32 @@ "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": [ "286" ], + "x-ms-request-id": [ "a474e155-96cf-4723-b5dc-dd14f6275891" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "f81b903c-99fe-4914-bc1d-5eab87a3baa4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125147Z:f81b903c-99fe-4914-bc1d-5eab87a3baa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:45:25 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:51: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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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" ], + "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550", "551", "552", "553", "554", "555" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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" ], @@ -801,32 +801,32 @@ "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": [ "285" ], + "x-ms-request-id": [ "e71ca018-55e1-49ae-8f81-1e8e140fd970" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "2da1ea0a-2822-45e3-939d-363486a76cf7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125217Z:2da1ea0a-2822-45e3-939d-363486a76cf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:45:56 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:52:16 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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" ], + "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550", "551", "552", "553", "554", "555", "556" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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" ], @@ -842,32 +842,32 @@ "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": [ "284" ], + "x-ms-request-id": [ "6fe2961e-d874-4682-92c0-f0146fc45fdb" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "c8eb8807-25b5-413f-b549-85cf240dcc73" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125247Z:c8eb8807-25b5-413f-b549-85cf240dcc73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:46:27 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:52:46 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/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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:52:34.9544042Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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+22": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14\u0026operationResultResponseType=Location+22": { "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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", "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" ], + "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550", "551", "552", "553", "554", "555", "556", "557" ], + "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], "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" ], @@ -882,56 +882,15 @@ "Headers": { "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-request-id": [ "01af2728-6f8f-479e-b9bb-f9372986636c" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:46:57 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/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" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-correlation-request-id": [ "8b1d3eaa-5a71-46de-a886-7ee3615dd483" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125247Z:8b1d3eaa-5a71-46de-a886-7ee3615dd483" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:46:57 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:52:47 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -940,14 +899,14 @@ "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": { + "Stop-AzKustoCluster+[NoContext]+Stop+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/start?api-version=2020-06-14+23": { "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/start?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "597" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], + "x-ms-unique-id": [ "558" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "CommandName": [ "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -962,17 +921,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/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" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "87aba3d2-1e3d-44b5-9251-fb9ff273fb77" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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" ], + "x-ms-correlation-request-id": [ "5fa4184d-d6ad-4027-9e17-133976a40f92" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125248Z:5fa4184d-d6ad-4027-9e17-133976a40f92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:46:57 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:52:47 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -981,14 +940,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/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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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" ], + "x-ms-unique-id": [ "558", "559" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -1004,32 +963,32 @@ "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": [ "282" ], + "x-ms-request-id": [ "0d7e5dda-411e-4b85-900b-fa5d37377d08" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "c3005e62-b966-4e2a-a825-a4a8af07ae82" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125318Z:c3005e62-b966-4e2a-a825-a4a8af07ae82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:47:27 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:53:18 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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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" ], + "x-ms-unique-id": [ "558", "559", "560" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1045,32 +1004,32 @@ "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": [ "281" ], + "x-ms-request-id": [ "966a8898-05aa-41dc-91a3-7c06cef72859" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "c67a6031-4294-46fc-99c5-42a7587aa501" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125348Z:c67a6031-4294-46fc-99c5-42a7587aa501" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:47:58 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:53:48 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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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" ], + "x-ms-unique-id": [ "558", "559", "560", "561" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "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" ], @@ -1086,32 +1045,32 @@ "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": [ "280" ], + "x-ms-request-id": [ "31d67b31-100a-460e-8c68-10995bb3e7ff" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "b63c34ed-6494-4cc7-9b06-c6a0605c282d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125419Z:b63c34ed-6494-4cc7-9b06-c6a0605c282d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:48:28 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:54:18 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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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" ], + "x-ms-unique-id": [ "558", "559", "560", "561", "562" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "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" ], @@ -1127,32 +1086,32 @@ "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": [ "279" ], + "x-ms-request-id": [ "1240897a-87a3-4d77-bf16-1e705ffb9a3c" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "2ee8e8b8-7522-48c5-b5d1-dc2186249162" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125449Z:2ee8e8b8-7522-48c5-b5d1-dc2186249162" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:48:59 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:54:48 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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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" ], + "x-ms-unique-id": [ "558", "559", "560", "561", "562", "563" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "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" ], @@ -1168,32 +1127,32 @@ "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": [ "288" ], + "x-ms-request-id": [ "5c9dd85a-d357-4fe7-9a7d-a4914ea1cb9a" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "807117d9-1a7b-49a4-b2f6-90b01381bd5c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125519Z:807117d9-1a7b-49a4-b2f6-90b01381bd5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:49:28 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:55:19 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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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" ], + "x-ms-unique-id": [ "558", "559", "560", "561", "562", "563", "564" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "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" ], @@ -1209,32 +1168,32 @@ "Cache-Control": [ "no-cache" ], "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-correlation-request-id": [ "7fe08c11-5f76-4c1c-b9a9-8691d550ea3f" ], + "x-ms-request-id": [ "87fde690-33a7-43f1-8b6e-5236d3fbd3e1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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-routing-request-id": [ "NORTHEUROPE:20200730T125549Z:7fe08c11-5f76-4c1c-b9a9-8691d550ea3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:50:00 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:55:49 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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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" ], + "x-ms-unique-id": [ "558", "559", "560", "561", "562", "563", "564", "565" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "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" ], @@ -1250,32 +1209,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "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" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "0ed0a78a-ce0a-4e84-8b73-179617b9d725" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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-correlation-request-id": [ "e7514d74-414b-48ed-87b2-57752477e147" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125620Z:e7514d74-414b-48ed-87b2-57752477e147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:50:29 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:56:19 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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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/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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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" ], + "x-ms-unique-id": [ "558", "559", "560", "561", "562", "563", "564", "565", "566" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "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" ], @@ -1291,32 +1250,32 @@ "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-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "f5cf5291-6f7f-4cb0-81c8-a8a229bb930e" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "e3eaac2f-6c41-465f-a142-f6ee8a32b30d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125650Z:e3eaac2f-6c41-465f-a142-f6ee8a32b30d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:51:01 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:56:50 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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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/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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "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" ], @@ -1332,32 +1291,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "24e39e6a-9faa-4fc7-be08-e34680468558" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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" ], + "x-ms-correlation-request-id": [ "a85bc3cd-1025-4e5e-9620-5403c2b63e86" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125721Z:a85bc3cd-1025-4e5e-9620-5403c2b63e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:51:31 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:57:20 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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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+34": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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/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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "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" ], @@ -1373,32 +1332,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "e8216ee9-df0f-41e4-b51a-6d3b6b7e2942" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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" ], + "x-ms-correlation-request-id": [ "8a8a9666-5294-4ec9-ba01-3a44211e7f94" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125751Z:8a8a9666-5294-4ec9-ba01-3a44211e7f94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:52:01 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:57:50 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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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+35": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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/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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568", "569" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "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" ], @@ -1414,32 +1373,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "f2e2452a-d258-4772-9d56-379b026c0ff3" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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" ], + "x-ms-correlation-request-id": [ "ed804f89-bbf7-4559-8974-b7031a43fd2b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125821Z:ed804f89-bbf7-4559-8974-b7031a43fd2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:52:31 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:58:20 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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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+36": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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/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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568", "569", "570" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "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" ], @@ -1455,32 +1414,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "2b3d246c-cfb9-4bab-a532-d275bb73f558" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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" ], + "x-ms-correlation-request-id": [ "c88c3dc3-bf4d-4387-b164-63012b6da670" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125851Z:c88c3dc3-bf4d-4387-b164-63012b6da670" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:53:02 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:58:51 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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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+37": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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/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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568", "569", "570", "571" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "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" ], @@ -1496,32 +1455,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "2c5e0026-4201-496a-b9a2-28e9dea0ca11" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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" ], + "x-ms-correlation-request-id": [ "029dc27c-ff4e-4273-a92e-798b970cb1b3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125922Z:029dc27c-ff4e-4273-a92e-798b970cb1b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:53:33 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:59:21 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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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+38": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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/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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568", "569", "570", "571", "572" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "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" ], @@ -1537,32 +1496,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "bdceb722-6370-4254-9706-8ad0a8fb7f60" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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" ], + "x-ms-correlation-request-id": [ "4e8e83cc-67f0-470e-9d46-c633ab76e65f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125952Z:4e8e83cc-67f0-470e-9d46-c633ab76e65f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:54:03 GMT" ] + "Date": [ "Thu, 30 Jul 2020 12:59:51 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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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+39": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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/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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568", "569", "570", "571", "572", "573" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "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" ], @@ -1578,32 +1537,32 @@ "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-ms-correlation-request-id": [ "3333112c-bb17-4688-a136-e2a6570622b0" ], + "x-ms-request-id": [ "0f223a4e-3591-4ed5-80a2-207ae427d7a7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T130022Z:3333112c-bb17-4688-a136-e2a6570622b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:54:34 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:00:21 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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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+40": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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/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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568", "569", "570", "571", "572", "573", "574" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "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" ], @@ -1619,32 +1578,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "c24b036b-1043-4e7f-a7ed-9c1c244256a2" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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" ], + "x-ms-correlation-request-id": [ "8700085d-1910-4d86-b463-078dfe16b481" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T130053Z:8700085d-1910-4d86-b463-078dfe16b481" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:55:03 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:00:53 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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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+41": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?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/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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568", "569", "570", "571", "572", "573", "574", "575" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "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" ], @@ -1660,32 +1619,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "a5c368d6-a828-41d5-b234-1e47d96aee79" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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" ], + "x-ms-correlation-request-id": [ "cca1a71a-d7ac-4a91-a32f-7ec950b0293a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T130123Z:cca1a71a-d7ac-4a91-a32f-7ec950b0293a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:55:34 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:01:23 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/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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T13:01:20.7798814Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"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/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+42": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14\u0026operationResultResponseType=Location+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", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14\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" ], - "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" ], + "x-ms-unique-id": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568", "569", "570", "571", "572", "573", "574", "575", "576" ], + "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], "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" ], @@ -1700,97 +1659,15 @@ "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-ms-request-id": [ "f09c176a-db00-49a9-b732-e115f28e3efa" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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" ], + "x-ms-correlation-request-id": [ "5956f9b6-847a-4b46-bbe9-8934dcfa6a71" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T130123Z:5956f9b6-847a-4b46-bbe9-8934dcfa6a71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:56:35 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:01:23 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1799,14 +1676,14 @@ "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": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "618" ], - "x-ms-client-request-id": [ "64e16635-c868-4b2f-b193-0346334b0aaf" ], + "x-ms-unique-id": [ "577" ], + "x-ms-client-request-id": [ "564f3c50-5efc-4a2c-93c1-2b7fd6d960b6" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1824,31 +1701,31 @@ "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-ms-request-id": [ "8279924f-706d-414c-bcaf-dbf5fc2427cb" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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" ], + "x-ms-correlation-request-id": [ "70badad0-f721-429f-b592-e62b53ff0f2e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T133701Z:70badad0-f721-429f-b592-e62b53ff0f2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:56:35 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:37:00 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z\",\"name\":\"testcluster0whu7z\",\"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://testcluster0whu7z.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster0whu7z.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+$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": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/stop?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369" ], + "x-ms-unique-id": [ "578" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "CommandName": [ "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1863,17 +1740,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/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" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "46ac29bb-8f6b-4b87-a96d-b7c42bc87397" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?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": [ "1197" ], - "x-ms-correlation-request-id": [ "31ee6bd6-0609-4af0-9400-0ffccf2f5a09" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175636Z:31ee6bd6-0609-4af0-9400-0ffccf2f5a09" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "f9157c93-0be5-4d2a-9231-16f5ecbfedc9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T133702Z:f9157c93-0be5-4d2a-9231-16f5ecbfedc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:56:36 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:37:01 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1882,14 +1759,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/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+3": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], + "x-ms-unique-id": [ "578", "579" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -1905,32 +1782,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-request-id": [ "d1ac94eb-8e95-49c9-953e-3d3e5d794ed6" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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" ], + "x-ms-correlation-request-id": [ "cad2d39a-4a07-41dd-bd3c-846ac8bd19e4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T133732Z:cad2d39a-4a07-41dd-bd3c-846ac8bd19e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:57:06 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:37:32 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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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+4": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "578", "579", "580" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1946,32 +1823,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "x-ms-request-id": [ "67d0b0ac-007d-44fb-9374-74595939df3b" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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" ], + "x-ms-correlation-request-id": [ "5018c58f-ddfe-4bda-a679-e7ab74528255" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T133804Z:5018c58f-ddfe-4bda-a679-e7ab74528255" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:57:37 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:38: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/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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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+5": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "578", "579", "580", "581" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "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" ], @@ -1987,32 +1864,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], + "x-ms-request-id": [ "0041aa95-2f2a-491d-9495-6651f2c72526" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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" ], + "x-ms-correlation-request-id": [ "7e505374-da0a-4dc5-a7a4-4c9fcdfa8291" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T133834Z:7e505374-da0a-4dc5-a7a4-4c9fcdfa8291" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:58:06 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:38:33 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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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+6": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "578", "579", "580", "581", "582" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "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" ], @@ -2028,32 +1905,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], + "x-ms-request-id": [ "e9243c4d-2750-4655-9e25-4ee3d6f3ac2e" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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" ], + "x-ms-correlation-request-id": [ "f0e8a327-4e6d-48a8-8f53-a32cc76f4164" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T133905Z:f0e8a327-4e6d-48a8-8f53-a32cc76f4164" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:58:37 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:39: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/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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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+7": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "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" ], @@ -2069,32 +1946,32 @@ "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": [ "295" ], + "x-ms-request-id": [ "43677871-fa91-4b21-88f4-612941ebf663" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "259e6254-766b-4e0b-ac77-bcad73017b4b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T133935Z:259e6254-766b-4e0b-ac77-bcad73017b4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:59:07 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:39:34 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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?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/360c1985-619a-4059-9ec7-835b2e07b793?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" ], + "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583", "584" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "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" ], @@ -2110,32 +1987,32 @@ "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": [ "294" ], + "x-ms-request-id": [ "29713fb9-93aa-47e9-9ad0-f3884b28b32b" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "04e155d2-66e1-41c3-92df-dcab7340c0e6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134005Z:04e155d2-66e1-41c3-92df-dcab7340c0e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:59:38 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:40: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/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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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+9": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", "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" ], + "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583", "584", "585" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "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" ], @@ -2151,32 +2028,32 @@ "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-ratelimit-remaining-subscription-resource-requests": [ "293" ], + "x-ms-request-id": [ "d1150a0d-8846-41f1-96f7-5e3ec2dd8c63" ], + "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-correlation-request-id": [ "5105f7a2-fb61-47dc-97ad-fd147bbf61ee" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134035Z:5105f7a2-fb61-47dc-97ad-fd147bbf61ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:00:08 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:40: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/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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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+10": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?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/360c1985-619a-4059-9ec7-835b2e07b793?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" ], + "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583", "584", "585", "586" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "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" ], @@ -2192,32 +2069,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "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": [ "292" ], + "x-ms-request-id": [ "ff49bef8-bdcd-4413-b85f-2746ba30c2de" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "b9a83d1e-3b35-4d44-bd68-7e0ad99b1909" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134106Z:b9a83d1e-3b35-4d44-bd68-7e0ad99b1909" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:00:39 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:41: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/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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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+11": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?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/360c1985-619a-4059-9ec7-835b2e07b793?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" ], + "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "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" ], @@ -2233,32 +2110,32 @@ "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" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "291" ], + "x-ms-request-id": [ "59a54beb-03e4-47ad-81c1-d10d0d72e753" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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-correlation-request-id": [ "39d19b97-b60f-42f7-842a-edb996f44add" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134136Z:39d19b97-b60f-42f7-842a-edb996f44add" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:01:08 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:41: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/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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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+12": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?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/360c1985-619a-4059-9ec7-835b2e07b793?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" ], + "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "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" ], @@ -2274,32 +2151,32 @@ "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": [ "290" ], + "x-ms-request-id": [ "ca165829-b1c2-4732-a4cf-553018695148" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "5f48ff58-24be-4a83-a4ad-b5c714af712b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134206Z:5f48ff58-24be-4a83-a4ad-b5c714af712b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:01:39 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:42: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/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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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/360c1985-619a-4059-9ec7-835b2e07b793?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/360c1985-619a-4059-9ec7-835b2e07b793?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" ], + "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "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" ], @@ -2315,32 +2192,32 @@ "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-correlation-request-id": [ "79e15eb0-7551-4286-886d-bd956f3c5c77" ], + "x-ms-request-id": [ "33ce4639-a11f-4bdc-8e4c-90b6b70dc525" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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-routing-request-id": [ "NORTHEUROPE:20200730T134236Z:79e15eb0-7551-4286-886d-bd956f3c5c77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:02:09 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:42: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/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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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/360c1985-619a-4059-9ec7-835b2e07b793?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/360c1985-619a-4059-9ec7-835b2e07b793?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" ], + "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "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" ], @@ -2356,32 +2233,32 @@ "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": [ "288" ], + "x-ms-request-id": [ "17365ed1-45a8-4d62-9e8a-96f23432bfd3" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "5905ba27-002a-4ee8-b139-792f943702e0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134307Z:5905ba27-002a-4ee8-b139-792f943702e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:02:40 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:43: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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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/360c1985-619a-4059-9ec7-835b2e07b793?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/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/360c1985-619a-4059-9ec7-835b2e07b793?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" ], + "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590", "591" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "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" ], @@ -2397,32 +2274,32 @@ "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": [ "287" ], + "x-ms-request-id": [ "70c898a3-8db5-453e-9a2c-1b7634056ab5" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "3991c443-e79e-495d-acdf-734e5ed91b8d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134337Z:3991c443-e79e-495d-acdf-734e5ed91b8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:03:10 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:43: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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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/360c1985-619a-4059-9ec7-835b2e07b793?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/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/360c1985-619a-4059-9ec7-835b2e07b793?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" ], + "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590", "591", "592" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "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" ], @@ -2438,32 +2315,32 @@ "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": [ "286" ], + "x-ms-request-id": [ "1ab142c2-e869-4413-a618-548261bafdd0" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "cdd8dd23-e0eb-4c5d-8910-68fea0d6eef1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134408Z:cdd8dd23-e0eb-4c5d-8910-68fea0d6eef1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:03:41 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:44: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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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/360c1985-619a-4059-9ec7-835b2e07b793?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/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/360c1985-619a-4059-9ec7-835b2e07b793?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" ], + "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590", "591", "592", "593" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "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" ], @@ -2479,32 +2356,32 @@ "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": [ "285" ], + "x-ms-request-id": [ "80f3517d-d879-4df2-bfed-1644e1a8ef2e" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "a1c8adf0-66b9-41f9-9412-9fb8e1453902" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134438Z:a1c8adf0-66b9-41f9-9412-9fb8e1453902" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:04:11 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:44: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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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/360c1985-619a-4059-9ec7-835b2e07b793?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/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/360c1985-619a-4059-9ec7-835b2e07b793?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" ], + "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590", "591", "592", "593", "594" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "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" ], @@ -2520,32 +2397,32 @@ "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": [ "289" ], + "x-ms-request-id": [ "b589d4ec-1d04-4ade-b12b-f4e0314b19cd" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "0441f300-d4f9-4003-915d-2a24708b3757" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134508Z:0441f300-d4f9-4003-915d-2a24708b3757" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:04:41 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:45:08 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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:44:52.868142Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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+19": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?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/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/360c1985-619a-4059-9ec7-835b2e07b793?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" ], - "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" ], + "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590", "591", "592", "593", "594", "595" ], + "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], "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" ], @@ -2560,220 +2437,15 @@ "Headers": { "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-request-id": [ "fdee235a-420a-41f4-81ce-d7dd76362f56" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:05:12 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+20": { - "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", "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" ], - "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": [ "5628dcaf-8963-4f90-8d41-61c18a806afd" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:05:42 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+21": { - "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", "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" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "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-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180613Z:5aaf35aa-ca85-4a55-8b1d-ad0bec444853" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:06:12 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+22": { - "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", "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" ], - "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": [ "fcb05fe1-e122-4ae6-8d09-af307302db48" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:06:43 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+23": { - "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", "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" ], - "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": [ "2f0fef58-b109-4018-bcca-a5494f02538d" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;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": [ "d99675b4-87ea-443b-b73a-70d58d0fb79d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134508Z:d99675b4-87ea-443b-b73a-70d58d0fb79d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:07:14 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/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\"}}" - } - }, - "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": { - "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", - "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" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "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-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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:07:14 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:45:08 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2782,14 +2454,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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/start?api-version=2020-06-14+20": { "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/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": [ "596" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "CommandName": [ "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2804,17 +2476,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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "761d8c82-b831-47f4-a95b-5bfe661c18f2" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "1198" ], + "x-ms-correlation-request-id": [ "20a894fd-a8c8-4c0b-849c-29996b0c1a8e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134509Z:20a894fd-a8c8-4c0b-849c-29996b0c1a8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:07:14 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:45:08 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2823,14 +2495,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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -2846,32 +2518,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": [ "287" ], + "x-ms-request-id": [ "e59ee0f4-4b28-4d47-a45e-1e94bca1cdbb" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "cb3b3727-0dc0-4f27-83a4-876edd00597a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134539Z:cb3b3727-0dc0-4f27-83a4-876edd00597a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:07:44 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:45:38 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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597", "598" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2887,32 +2559,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": [ "286" ], + "x-ms-request-id": [ "1a266dea-c09d-4152-befc-6bb87b384ea1" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "45b1fdce-197b-49dc-8e1e-e828e622b3eb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134609Z:45b1fdce-197b-49dc-8e1e-e828e622b3eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:08:15 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:46: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/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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597", "598", "599" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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 +2600,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": [ "285" ], + "x-ms-request-id": [ "c183e9dc-49d7-4eeb-98b4-4d5c7c022cd4" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "a2d137ad-b2e4-42ea-b7bc-a2611a37a64d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134640Z:a2d137ad-b2e4-42ea-b7bc-a2611a37a64d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:08:44 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:46: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/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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597", "598", "599", "600" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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 +2641,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": [ "284" ], + "x-ms-request-id": [ "8987d554-eb61-4b9b-8d26-be81f687d3f3" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "2b7ea795-bf93-46b0-b6c7-8811f409a36c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134710Z:2b7ea795-bf93-46b0-b6c7-8811f409a36c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:09:15 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:47: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/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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597", "598", "599", "600", "601" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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 +2682,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": [ "283" ], + "x-ms-request-id": [ "e2ec2386-86ec-44e6-9ae2-d3190b486475" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "9e240ef0-8d26-474a-bd7f-70682adf4ad7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134740Z:9e240ef0-8d26-474a-bd7f-70682adf4ad7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:09:46 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:47: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/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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597", "598", "599", "600", "601", "602" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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 +2723,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": [ "282" ], + "x-ms-request-id": [ "9db49a09-7ab1-4a5f-828d-06842156229b" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "5ce0aafc-2b10-4051-8245-9af52273c502" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134810Z:5ce0aafc-2b10-4051-8245-9af52273c502" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:10:16 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:48: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/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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597", "598", "599", "600", "601", "602", "603" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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 +2764,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-correlation-request-id": [ "25543486-9d52-4511-9e94-a47a0f6e937f" ], + "x-ms-request-id": [ "ec5f104e-3419-4c80-9fd6-a4a49679da1e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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-routing-request-id": [ "NORTHEUROPE:20200730T134841Z:25543486-9d52-4511-9e94-a47a0f6e937f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:10:46 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:48: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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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 +2805,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": [ "280" ], + "x-ms-request-id": [ "4b42bd40-7eeb-4dca-b40b-a1df9f70a6b8" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "5892a276-b68e-43e3-987b-4f55f6b1aa26" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134911Z:5892a276-b68e-43e3-987b-4f55f6b1aa26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:11:18 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:49: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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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 +2846,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-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "0ae2b5bd-2f34-4ed3-bd47-77332b0b4d55" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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-correlation-request-id": [ "eb51b33b-e39d-42de-8692-e3c4b431f1f9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134942Z:eb51b33b-e39d-42de-8692-e3c4b431f1f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:11:49 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:49: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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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 +2887,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": [ "288" ], + "x-ms-request-id": [ "617410be-426c-4991-af5a-1c5524411319" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "37197259-4f0f-4cda-81ee-c49a07448ed0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135012Z:37197259-4f0f-4cda-81ee-c49a07448ed0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:12:19 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:50: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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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 +2928,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": [ "287" ], + "x-ms-request-id": [ "9e4ddb8c-5b1d-4ee5-8497-f7b7bc0e1306" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "b48c8c6a-98d0-4f43-8b07-74bb074c592c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135042Z:b48c8c6a-98d0-4f43-8b07-74bb074c592c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:12:50 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:50: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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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 +2969,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": [ "286" ], + "x-ms-request-id": [ "6b425bdb-28c9-45d7-9680-f77bc2861f02" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "3064692b-c4fa-4bf9-abb2-63c8a1d2b4f0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135112Z:3064692b-c4fa-4bf9-abb2-63c8a1d2b4f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:13:20 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:51: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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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 +3010,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": [ "285" ], + "x-ms-request-id": [ "92ed4884-d96c-4668-8fed-598a3e838836" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "3aa3abdf-ad76-45c9-aa6b-e94bed9e7db8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135143Z:3aa3abdf-ad76-45c9-aa6b-e94bed9e7db8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:13:51 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:51: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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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 +3051,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": [ "284" ], + "x-ms-request-id": [ "a287199e-1cf8-471b-85c8-f359b547fe44" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "d04a06ac-1ee7-43ee-85c6-afce47d6b104" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135213Z:d04a06ac-1ee7-43ee-85c6-afce47d6b104" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:14:21 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:52: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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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 +3092,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": [ "283" ], + "x-ms-request-id": [ "48997229-5698-4791-bef3-f1ed20a60725" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "42db4d50-bf91-4ad8-a488-7fa520611ee6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135243Z:42db4d50-bf91-4ad8-a488-7fa520611ee6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:14:51 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:52: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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611", "612" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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 +3133,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": [ "282" ], + "x-ms-request-id": [ "8a4c93ee-a14d-47e5-96d4-e7f6eee8d15f" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "5bcab041-1cc6-453f-887c-5c393ba42bdf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135313Z:5bcab041-1cc6-453f-887c-5c393ba42bdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:15:21 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:53: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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611", "612", "613" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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 +3174,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": [ "281" ], + "x-ms-request-id": [ "b978f85b-1b0e-4b3b-be1a-0553c525440b" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "b4415a64-cecc-42ce-a156-cec68233ce2c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135344Z:b4415a64-cecc-42ce-a156-cec68233ce2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:15:52 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:53: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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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+43": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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/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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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", "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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611", "612", "613", "614" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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" ], @@ -3543,32 +3215,32 @@ "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-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "d8e76f68-9bcf-4ff3-b527-e65a130419f8" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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" ], + "x-ms-correlation-request-id": [ "b8207959-c341-4584-ab2f-3f77969973ec" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135414Z:b8207959-c341-4584-ab2f-3f77969973ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:16:22 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:54:14 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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:53:44.3532503Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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+44": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14\u0026operationResultResponseType=Location+39": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?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", "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" ], + "x-ms-unique-id": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611", "612", "613", "614", "615" ], + "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], "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" ], @@ -3583,56 +3255,15 @@ "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": [ "4dc9bba6-a2ce-4e2e-ba2e-b75b090a43d1" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "279" ], + "x-ms-correlation-request-id": [ "034f33b4-12d2-4eb0-b073-e5c2f3884132" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135414Z:034f33b4-12d2-4eb0-b073-e5c2f3884132" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:16:53 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:54:14 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Test-AzKustoClusterNameAvailability.Recording.json b/src/Kusto/test/Test-AzKustoClusterNameAvailability.Recording.json index 30da8b7cd780..9582dfad8dc2 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\": \"testcluster5arkid\",\r\n \"type\": \"Microsoft.Kusto/Clusters\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -18,21 +18,21 @@ "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-request-id": [ "594e1674-ccd1-489a-8f6d-d21d6cccc1d1" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "dfce8436-b211-4594-9ade-7d865c33827b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135416Z:dfce8436-b211-4594-9ade-7d865c33827b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:25 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:54:15 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\":\"testcluster5arkid\",\"nameAvailable\":false,\"message\":\"Name \u0027testcluster5arkid\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..9066f10969b0 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14", "Content": "{\r\n \"name\": \"KustoClientsScenarioTest\",\r\n \"type\": \"Microsoft.Kusto/clusters/principalAssignments\"\r\n}", "Headers": { }, @@ -18,31 +18,31 @@ "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-request-id": [ "0fe8c8ac-b274-44a2-a501-289e1df7b065" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "c3950727-aa07-4122-a5c8-311aaf8cb3f6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135417Z:c3950727-aa07-4122-a5c8-311aaf8cb3f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:26 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:54: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 testcluster5arkid. 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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": [ "618" ], + "x-ms-client-request-id": [ "d2483e8f-b097-45d2-aa8f-353f9273a42d" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -59,28 +59,28 @@ "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], + "x-ms-correlation-request-id": [ "0726290c-4663-469f-a704-6169360af07c" ], + "x-ms-request-id": [ "ae49f0d6-ed07-43d8-b722-43c16987262a" ], "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" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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-routing-request-id": [ "NORTHEUROPE:20200730T135418Z:0726290c-4663-469f-a704-6169360af07c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:27 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:54:17 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14", "Content": "{\r\n \"name\": \"principalassignment1\",\r\n \"type\": \"Microsoft.Kusto/clusters/principalAssignments\"\r\n}", "Headers": { }, @@ -96,14 +96,14 @@ "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-request-id": [ "976a2424-e99e-4a01-8a30-cd4535e58e92" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "e8790dc8-a562-451e-858f-00fa9e52bd23" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135418Z:e8790dc8-a562-451e-858f-00fa9e52bd23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:27 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:54: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..18d082b99f7b 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/checkNameAvailability?api-version=2020-06-14", + "Content": "{\r\n \"name\": \"testdataconnection5arkid\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases/dataConnections\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -18,31 +18,31 @@ "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-request-id": [ "b2bb7868-87b6-469e-8e48-74638e9ffd1b" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "0d4fce4b-0776-4f80-99fb-f10a190f3ccc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135525Z:0d4fce4b-0776-4f80-99fb-f10a190f3ccc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:32 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:55:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "259" ], + "Content-Length": [ "69" ], "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\":\"testdataconnection5arkid\",\"nameAvailable\":true,\"message\":\"\"}" } }, - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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": [ "633" ], + "x-ms-client-request-id": [ "271d5925-33a8-4c20-8774-386ab29da7a6" ], "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": [ "fb9d81fd-3215-484a-b231-b601c2c02d7c" ], + "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": [ "ca7001fa-9768-48cf-b858-9906e91ab6b4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135526Z:ca7001fa-9768-48cf-b858-9906e91ab6b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:32 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:55:26 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/checkNameAvailability?api-version=2020-06-14", + "Content": "{\r\n \"name\": \"testdataconnection5arkidani9hf\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases/dataConnections\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -96,21 +96,21 @@ "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-request-id": [ "223b0faa-6863-42c3-9a1a-c4457d84718e" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "c5b43564-369e-4bc0-91ff-31fc47e20b77" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135526Z:c5b43564-369e-4bc0-91ff-31fc47e20b77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:33 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:55:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "75" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"testdataconnectionpb8oayi6wlsf\",\"nameAvailable\":true,\"message\":\"\"}" + "Content": "{\"name\":\"testdataconnection5arkidani9hf\",\"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..6ec48d34e8b7 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/checkNameAvailability?api-version=2020-06-14", + "Content": "{\r\n \"name\": \"testdatabase5arkid\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -18,31 +18,31 @@ "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-request-id": [ "298b356c-d2d1-44e4-9363-bdcaf3f87206" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "b76b8c2c-ed01-447e-a8b7-16b0f25d1221" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135419Z:b76b8c2c-ed01-447e-a8b7-16b0f25d1221" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:28 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:54: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\":\"testdatabase5arkid\",\"nameAvailable\":false,\"message\":\"Database testdatabase5arkid already exists in cluster testcluster5arkid. 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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": [ "621" ], + "x-ms-client-request-id": [ "ab537f8a-1690-41b4-911a-8223b1342714" ], "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": [ "7719da9d-ae0d-4011-b8d0-0119bdc0e037" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "a9b34ed7-2bbc-487d-bce1-ae31d47b739a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135419Z:a9b34ed7-2bbc-487d-bce1-ae31d47b739a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:28 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:54: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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/checkNameAvailability?api-version=2020-06-14", + "Content": "{\r\n \"name\": \"testdatabase5arkidqynp9a\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -96,21 +96,21 @@ "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-request-id": [ "7baded81-dd2e-49b6-b4e3-b710300bcc59" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "c801a0e3-7619-4aab-96eb-a0e513d5c0b6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135420Z:c801a0e3-7619-4aab-96eb-a0e513d5c0b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:28 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:54:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "69" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"testdatabasepb8oay2tmpqx\",\"nameAvailable\":true,\"message\":\"\"}" + "Content": "{\"name\":\"testdatabase5arkidqynp9a\",\"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..1f5a8540bb94 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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": [ "cfbdb337-3a4b-4bde-aec2-67f3ee3e2f8a" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87b5ee05-dac1-4c95-8718-cad08f93448b?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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-correlation-request-id": [ "0a0bbac8-3297-4e27-8cc9-12db4146f381" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135421Z:0a0bbac8-3297-4e27-8cc9-12db4146f381" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:29 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:54:21 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/testdatabase5arkid/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/87b5ee05-dac1-4c95-8718-cad08f93448b?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/87b5ee05-dac1-4c95-8718-cad08f93448b?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": [ "623", "624" ], + "x-ms-client-request-id": [ "4d23c7bd-6524-43cf-9858-d8d9a61c47ef", "4d23c7bd-6524-43cf-9858-d8d9a61c47ef" ], "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": [ "278" ], + "x-ms-request-id": [ "d3590e6a-309a-43a3-a7df-0811ab5b2dd1" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "d33e242e-69f5-4851-9399-521059adaad1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135452Z:d33e242e-69f5-4851-9399-521059adaad1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:59 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:54:51 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/87b5ee05-dac1-4c95-8718-cad08f93448b\",\"name\":\"87b5ee05-dac1-4c95-8718-cad08f93448b\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T13:54:21.5222581Z\",\"endTime\":\"2020-07-30T13:54:21.6941494Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseAddPrincipals\",\"RootActivityId\":\"42dcdbe3-f6a3-445f-ab67-111e854eb932\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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": [ "623", "624", "625" ], + "x-ms-client-request-id": [ "4d23c7bd-6524-43cf-9858-d8d9a61c47ef", "4d23c7bd-6524-43cf-9858-d8d9a61c47ef", "4d23c7bd-6524-43cf-9858-d8d9a61c47ef" ], "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": [ "0c764759-faf1-4a9d-ada7-6486a5fe1fba" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "7ef2dd1c-ec11-4bb3-aa26-3cd755995bc7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135452Z:7ef2dd1c-ec11-4bb3-aa26-3cd755995bc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:00 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:54:51 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14", "Content": "{\r\n \"name\": \"principalassignment1\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases/principalAssignments\"\r\n}", "Headers": { }, @@ -138,31 +138,31 @@ "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-request-id": [ "272b8579-1c9b-4b46-a7e2-247b20904308" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "452e32da-621f-45bb-94e1-c891df1ae314" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135452Z:452e32da-621f-45bb-94e1-c891df1ae314" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:00 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:54:52 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 testdatabase5arkid. 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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": [ "627" ], + "x-ms-client-request-id": [ "4cfb7a09-aa29-4220-a88a-d588756583fd" ], "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/f0a0b6cc-5074-4f10-a45d-e669d1faf551?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/f0a0b6cc-5074-4f10-a45d-e669d1faf551?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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-request-id": [ "5240ad16-b312-497e-b2e8-8e9cb95d94cb" ], + "x-ms-correlation-request-id": [ "5240ad16-b312-497e-b2e8-8e9cb95d94cb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135453Z:5240ad16-b312-497e-b2e8-8e9cb95d94cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:01 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:54:52 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/f0a0b6cc-5074-4f10-a45d-e669d1faf551?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/f0a0b6cc-5074-4f10-a45d-e669d1faf551?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": [ "627", "628" ], + "x-ms-client-request-id": [ "4cfb7a09-aa29-4220-a88a-d588756583fd", "4cfb7a09-aa29-4220-a88a-d588756583fd" ], "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": [ "288" ], + "x-ms-request-id": [ "5c341298-35de-4669-8600-541174abd447" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "37b674f4-f8bb-42a4-a7d0-4dc3b46c8e65" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135523Z:37b674f4-f8bb-42a4-a7d0-4dc3b46c8e65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:31 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:55:23 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/f0a0b6cc-5074-4f10-a45d-e669d1faf551\",\"name\":\"f0a0b6cc-5074-4f10-a45d-e669d1faf551\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T13:54:53.4013305Z\",\"endTime\":\"2020-07-30T13:54:53.5263414Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDropPrincipals\",\"RootActivityId\":\"c8ce6fca-4901-4974-9b92-bfd1f5ebc763\",\"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/f0a0b6cc-5074-4f10-a45d-e669d1faf551?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/f0a0b6cc-5074-4f10-a45d-e669d1faf551?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": [ "627", "628", "629" ], + "x-ms-client-request-id": [ "4cfb7a09-aa29-4220-a88a-d588756583fd", "4cfb7a09-aa29-4220-a88a-d588756583fd", "4cfb7a09-aa29-4220-a88a-d588756583fd" ], "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": [ "69ea9d17-726d-4f86-b9e2-41d9b7222296" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "287" ], + "x-ms-correlation-request-id": [ "ac698592-8e48-44ad-b8c5-e1f146221418" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135523Z:ac698592-8e48-44ad-b8c5-e1f146221418" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:31 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:55:23 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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": [ "630" ], + "x-ms-client-request-id": [ "22bbad95-5310-44f7-836e-2adaee87b43a" ], "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": [ "47449c1e-a6f3-4c89-939a-7fd2897f5871" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "256a34a0-77be-4520-a7a2-b92edaab2802" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135524Z:256a34a0-77be-4520-a7a2-b92edaab2802" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:31 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:55: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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14", "Content": "{\r\n \"name\": \"principalassignment1\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases/principalAssignments\"\r\n}", "Headers": { }, @@ -337,14 +337,14 @@ "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-request-id": [ "f53a5a80-3cea-464f-899a-80380049d9ac" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "dc24b44c-13b1-46f7-b2d4-933e2bd6215b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135524Z:dc24b44c-13b1-46f7-b2d4-933e2bd6215b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:31 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:55:24 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..e85c54f40716 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "445568d0-8a40-4d7b-bf07-f3968976e836" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "a4c983f7-d30b-4022-b0d5-4a19111aba6d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135528Z:a4c983f7-d30b-4022-b0d5-4a19111aba6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:34 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:55:28 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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/99268e7b-b01d-4742-bc92-d606e705bc30?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/99268e7b-b01d-4742-bc92-d606e705bc30?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": [ "635", "636" ], + "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], "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": [ "286" ], + "x-ms-request-id": [ "c5c88e1e-b7f1-4653-82ba-9367d0a012a5" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "2acbbf6f-6f25-4312-b828-767c179e8dc5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135558Z:2acbbf6f-6f25-4312-b828-767c179e8dc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:37:05 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:55:58 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/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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"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/99268e7b-b01d-4742-bc92-d606e705bc30?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/99268e7b-b01d-4742-bc92-d606e705bc30?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": [ "635", "636", "637" ], + "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], "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-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "e0924952-ed1c-4a5c-8eb5-24f92580bd14" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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-correlation-request-id": [ "60f8e1d1-3b83-4faa-ba58-3cf62de095fb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135629Z:60f8e1d1-3b83-4faa-ba58-3cf62de095fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:37:35 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:56:28 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/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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"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/99268e7b-b01d-4742-bc92-d606e705bc30?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/99268e7b-b01d-4742-bc92-d606e705bc30?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": [ "635", "636", "637", "638" ], + "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], "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": [ "284" ], + "x-ms-request-id": [ "d03349e5-8a54-4d07-9aac-b00788481190" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "d5cf36d7-3d63-4a41-97dd-28519232623a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135659Z:d5cf36d7-3d63-4a41-97dd-28519232623a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:38:06 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:56:59 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/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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"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/99268e7b-b01d-4742-bc92-d606e705bc30?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/99268e7b-b01d-4742-bc92-d606e705bc30?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": [ "635", "636", "637", "638", "639" ], + "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], "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": [ "283" ], + "x-ms-request-id": [ "4ad5a0f7-5ad7-4e61-af97-037f2732f512" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "79143412-6ed6-4ac3-95dc-2b9855122386" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135729Z:79143412-6ed6-4ac3-95dc-2b9855122386" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:38:36 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:57:28 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/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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"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/99268e7b-b01d-4742-bc92-d606e705bc30?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/99268e7b-b01d-4742-bc92-d606e705bc30?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": [ "635", "636", "637", "638", "639", "640" ], + "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], "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": [ "282" ], + "x-ms-request-id": [ "39402646-7f5e-4044-9298-c70253b6f387" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "9c72c1a9-b8c8-4e77-998d-08c773e41963" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135759Z:9c72c1a9-b8c8-4e77-998d-08c773e41963" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:39:06 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:57:59 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/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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"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/99268e7b-b01d-4742-bc92-d606e705bc30?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/99268e7b-b01d-4742-bc92-d606e705bc30?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": [ "635", "636", "637", "638", "639", "640", "641" ], + "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], "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": [ "281" ], + "x-ms-request-id": [ "dd7e5dca-730c-4a53-98f2-13d62b587f75" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "1af4954b-3a5d-4fbd-92e9-bf02500b1ffa" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135830Z:1af4954b-3a5d-4fbd-92e9-bf02500b1ffa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:39:37 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:58:29 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/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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"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/99268e7b-b01d-4742-bc92-d606e705bc30?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/99268e7b-b01d-4742-bc92-d606e705bc30?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": [ "635", "636", "637", "638", "639", "640", "641", "642" ], + "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], "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": [ "280" ], + "x-ms-request-id": [ "ed5ee90e-960f-474f-a1e2-17efe94961a7" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "6fdc0906-41be-49f1-9081-aff6a4400aec" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135900Z:6fdc0906-41be-49f1-9081-aff6a4400aec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:40:07 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:58:59 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/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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"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/99268e7b-b01d-4742-bc92-d606e705bc30?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/99268e7b-b01d-4742-bc92-d606e705bc30?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": [ "635", "636", "637", "638", "639", "640", "641", "642", "643" ], + "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], "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-correlation-request-id": [ "37b511e5-b228-4e3d-9f60-ddab3b31d98b" ], + "x-ms-request-id": [ "c81b4732-6805-492d-bceb-09088483f52f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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-routing-request-id": [ "NORTHEUROPE:20200730T135930Z:37b511e5-b228-4e3d-9f60-ddab3b31d98b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:40:37 GMT" ] + "Date": [ "Thu, 30 Jul 2020 13:59:30 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/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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"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/99268e7b-b01d-4742-bc92-d606e705bc30?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/99268e7b-b01d-4742-bc92-d606e705bc30?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": [ "635", "636", "637", "638", "639", "640", "641", "642", "643", "644" ], + "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], "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": [ "289" ], + "x-ms-request-id": [ "3d12c103-e2bc-4341-8616-4eec77fe5c2b" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "56e04210-730e-46dd-a820-20536e089930" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140001Z:56e04210-730e-46dd-a820-20536e089930" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:41:08 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:00:00 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/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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"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/99268e7b-b01d-4742-bc92-d606e705bc30?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/99268e7b-b01d-4742-bc92-d606e705bc30?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": [ "635", "636", "637", "638", "639", "640", "641", "642", "643", "644", "645" ], + "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], "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": [ "288" ], + "x-ms-request-id": [ "6d5e0a75-1139-494f-b7af-c14d109a4414" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "edfbfab0-1c32-4171-be60-76ae39809eeb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140031Z:edfbfab0-1c32-4171-be60-76ae39809eeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:41:37 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:00:30 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/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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"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/99268e7b-b01d-4742-bc92-d606e705bc30?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/99268e7b-b01d-4742-bc92-d606e705bc30?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": [ "635", "636", "637", "638", "639", "640", "641", "642", "643", "644", "645", "646" ], + "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], "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": [ "287" ], + "x-ms-request-id": [ "2355fadd-714e-4d29-9545-54032281bb39" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "7a824796-1772-408f-8b2a-7859e4b66d4a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140101Z:7a824796-1772-408f-8b2a-7859e4b66d4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:42:09 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:01:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "478" ], + "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/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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "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/providers/Microsoft.Kusto/locations/East US/operationResults/99268e7b-b01d-4742-bc92-d606e705bc30?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/providers/Microsoft.Kusto/locations/East%20US/operationResults/99268e7b-b01d-4742-bc92-d606e705bc30?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": [ "635", "636", "637", "638", "639", "640", "641", "642", "643", "644", "645", "646", "647" ], + "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], "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" ], @@ -505,6 +505,47 @@ "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": [ "8aa4c19e-6e49-4d72-b167-d25f49091b86" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "bf818e84-2e04-4939-93af-079e5d7d139c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140131Z:bf818e84-2e04-4939-93af-079e5d7d139c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 14:01:31 GMT" ] + }, + "ContentHeaders": { + "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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T14:01:29.9100074Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + } + }, + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "635", "636", "637", "638", "639", "640", "641", "642", "643", "644", "645", "646", "647", "648" ], + "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], + "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", "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", "Update-AzKustoCluster_UpdateExpanded" ], + "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": { @@ -512,32 +553,32 @@ "Pragma": [ "no-cache" ], "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-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-request-id": [ "1fbb143d-5edd-4f5e-b0b4-fb7a0f3b5d0b" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "dbb89ea7-44e5-4abd-b777-49c9e1be747f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140132Z:dbb89ea7-44e5-4abd-b777-49c9e1be747f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:42:09 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:01:31 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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": [ "649" ], + "x-ms-client-request-id": [ "7de99fcc-7cb9-4d6d-983f-f7274782b05e" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -554,28 +595,28 @@ "Pragma": [ "no-cache" ], "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-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "x-ms-request-id": [ "8570da08-efe0-4527-b39c-551c1934368b" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "3bd0c284-363a-4656-8e94-a6089da901fa" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140132Z:3bd0c284-363a-4656-8e94-a6089da901fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:42:09 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:01:31 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?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 +631,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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "d6de3fba-e924-43f2-ab85-065c83ec3184" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "128738e0-3913-4f0e-80e1-0b1356a1ba42" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140133Z:128738e0-3913-4f0e-80e1-0b1356a1ba42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:42:10 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:01:33 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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": [ "650", "651" ], + "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -633,32 +674,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": [ "285" ], + "x-ms-request-id": [ "45e828d5-07b9-44ab-965d-20a464453ac3" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "cedf55e1-330f-4d53-ba4b-e0b77bb77e01" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140203Z:cedf55e1-330f-4d53-ba4b-e0b77bb77e01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:42:40 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:02:03 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/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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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": [ "650", "651", "652" ], + "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -674,32 +715,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": [ "284" ], + "x-ms-request-id": [ "0af11372-b0ac-48e2-bf24-b6bf2d6e85e4" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "e7702e67-2b56-4d37-bb29-2e921da3d1fc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140234Z:e7702e67-2b56-4d37-bb29-2e921da3d1fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:43:11 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:02:33 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/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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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": [ "650", "651", "652", "653" ], + "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], "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 +756,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-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "cfa32b46-e405-47aa-9596-ac5d23d4f924" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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-correlation-request-id": [ "93fd0370-719a-4321-9d7d-bf26fbab4c01" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140304Z:93fd0370-719a-4321-9d7d-bf26fbab4c01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:43:41 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:03:03 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/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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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": [ "650", "651", "652", "653", "654" ], + "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], "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 +797,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": [ "282" ], + "x-ms-request-id": [ "8c9459c5-1894-4464-97f9-004eeb2a2972" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "c2fcf2ae-2679-4fb4-8dc1-3efe41049071" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140334Z:c2fcf2ae-2679-4fb4-8dc1-3efe41049071" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:44:11 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:03:34 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/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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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": [ "650", "651", "652", "653", "654", "655" ], + "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], "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 +838,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": [ "281" ], + "x-ms-request-id": [ "aa6d6f8e-5486-4907-a238-2584b68b5454" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "bf9fb674-db37-455b-8375-a54345646ff6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140404Z:bf9fb674-db37-455b-8375-a54345646ff6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:44:42 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:04:04 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/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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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": [ "650", "651", "652", "653", "654", "655", "656" ], + "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], "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 +879,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": [ "280" ], + "x-ms-request-id": [ "802766b8-2a47-4c08-88d9-1ce987942f30" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "50562e27-bd58-4a75-956c-0c1a1c9b6bb3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140435Z:50562e27-bd58-4a75-956c-0c1a1c9b6bb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:45:12 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:04:34 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/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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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": [ "650", "651", "652", "653", "654", "655", "656", "657" ], + "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], "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 +920,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": [ "289" ], + "x-ms-request-id": [ "2afbbf70-0fed-4b87-a857-b86ff44f2b06" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "f5eb3d5e-597e-4283-9eb1-9bc8efd8eafb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140505Z:f5eb3d5e-597e-4283-9eb1-9bc8efd8eafb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:45:42 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:05:04 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/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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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": [ "650", "651", "652", "653", "654", "655", "656", "657", "658" ], + "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], "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 +961,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-correlation-request-id": [ "a168fee0-d5a9-4ba0-89a0-342a26f63dcd" ], + "x-ms-request-id": [ "c3bbbee7-c547-47ed-9ac5-0bd2d29799ca" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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-routing-request-id": [ "NORTHEUROPE:20200730T140535Z:a168fee0-d5a9-4ba0-89a0-342a26f63dcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:46:13 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:05:35 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/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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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": [ "650", "651", "652", "653", "654", "655", "656", "657", "658", "659" ], + "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], "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 +1002,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": [ "287" ], + "x-ms-request-id": [ "82e578de-9ee9-4240-bda2-7e49b2b54dfe" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "039b9d29-476a-454a-b241-abc77402077f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140606Z:039b9d29-476a-454a-b241-abc77402077f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:46:43 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:06:05 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/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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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": [ "650", "651", "652", "653", "654", "655", "656", "657", "658", "659", "660" ], + "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], "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 +1043,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": [ "286" ], + "x-ms-request-id": [ "a9d263bd-2cb4-47e4-82e3-6d03641b83e7" ], + "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": [ "71158db4-aaa1-44c4-848b-e7e4b3e9de10" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140636Z:71158db4-aaa1-44c4-848b-e7e4b3e9de10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:47:13 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:06:35 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/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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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/31414867-c6d7-4584-a7a8-0142d2bb37e0?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": [ "650", "651", "652", "653", "654", "655", "656", "657", "658", "659", "660", "661" ], + "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], "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 +1084,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": [ "285" ], + "x-ms-request-id": [ "c01e9874-51b1-45de-8da6-9e05f684f8f4" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "5bc8243d-c98b-4383-a5d2-55d9f8601033" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140706Z:5bc8243d-c98b-4383-a5d2-55d9f8601033" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:47:44 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:07:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "478" ], + "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/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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "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/providers/Microsoft.Kusto/locations/East US/operationResults/31414867-c6d7-4584-a7a8-0142d2bb37e0?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/providers/Microsoft.Kusto/locations/East%20US/operationResults/31414867-c6d7-4584-a7a8-0142d2bb37e0?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": [ "650", "651", "652", "653", "654", "655", "656", "657", "658", "659", "660", "661", "662" ], + "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], "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" ], @@ -1078,6 +1119,47 @@ "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": [ "b09fc7af-e7bc-4fa8-98a0-fc9c56ffbc3b" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "a09377c7-1b91-4206-9720-d795673e2a2c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140737Z:a09377c7-1b91-4206-9720-d795673e2a2c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 30 Jul 2020 14:07:36 GMT" ] + }, + "ContentHeaders": { + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:07:35.9415425Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + } + }, + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "650", "651", "652", "653", "654", "655", "656", "657", "658", "659", "660", "661", "662", "663" ], + "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], + "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", "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", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], + "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": { @@ -1086,21 +1168,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": [ "8bfc1a6d-1b32-4abc-8c55-d91e82f4f21d" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "d5d87267-b1b4-4dd2-a2dd-1ab0b899ca5e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140737Z:d5d87267-b1b4-4dd2-a2dd-1ab0b899ca5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:47:45 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:07:37 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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..f61b3441709d 100644 --- a/src/Kusto/test/Update-AzKustoDataConnection.Recording.json +++ b/src/Kusto/test/Update-AzKustoDataConnection.Recording.json @@ -1,9 +1,9 @@ { - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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 \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubns5arkid/eventhubs/eventhub5arkid\",\r\n \"mappingRuleName\": \"EventsMapping1\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { @@ -12,119 +12,33 @@ } }, "Response": { - "StatusCode": 202, + "StatusCode": 404, "Headers": { "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" ], + "x-ms-request-id": [ "7e409ca1-d018-4769-96fc-5fb19ad349e6" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "89624fd4-2f77-4cb9-a088-c5009b25555d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140947Z:89624fd4-2f77-4cb9-a088-c5009b25555d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:49:52 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:09:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "766" ], + "Content-Length": [ "300" ], "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": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid\u0027 is not found.\"}}" } }, - "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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "714", "715" ], - "x-ms-client-request-id": [ "34ee3523-1457-431e-b1bc-27ea8037bf4f", "34ee3523-1457-431e-b1bc-27ea8037bf4f" ], - "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], - "FullCommandName": [ "Update-AzKustoDataConnection_Update", "Update-AzKustoDataConnection_Update" ], - "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-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-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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:50:23 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "481" ], - "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\"}}" - } - }, - "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": { - "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", - "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" ], - "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" ], - "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" ], - "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-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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:50:24 GMT" ] - }, - "ContentHeaders": { - "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/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\"}}" - } - }, - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?api-version=2020-06-14", + "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/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubnsgridkgb956/eventhubs/eventgridkgb956\",\r\n \"mappingRuleName\": \"EventsMapping1\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Storage/storageAccounts/storage5arkid\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { @@ -133,119 +47,33 @@ } }, "Response": { - "StatusCode": 202, + "StatusCode": 404, "Headers": { "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" ], + "x-ms-request-id": [ "b336baee-2529-43f6-8625-526b1c71a491" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:50:24 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "923" ], - "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\"}}" - } - }, - "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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "717", "718" ], - "x-ms-client-request-id": [ "bb10fec3-a3b2-49e2-8cb9-ead5d265ef05", "bb10fec3-a3b2-49e2-8cb9-ead5d265ef05" ], - "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], - "FullCommandName": [ "Update-AzKustoDataConnection_Update", "Update-AzKustoDataConnection_Update" ], - "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": [ "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-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145055Z:a76e2543-c330-47d5-9e0f-b8b17149b470" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:50:54 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/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\"}}" - } - }, - "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": { - "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": [ "717", "718", "719" ], - "x-ms-client-request-id": [ "bb10fec3-a3b2-49e2-8cb9-ead5d265ef05", "bb10fec3-a3b2-49e2-8cb9-ead5d265ef05", "bb10fec3-a3b2-49e2-8cb9-ead5d265ef05" ], - "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" ], - "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" ], - "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-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": [ "18195ab3-e59f-42fe-b1c2-70160a6773a5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140948Z:18195ab3-e59f-42fe-b1c2-70160a6773a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:50:55 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:09:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "924" ], + "Content-Length": [ "301" ], "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": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg\u0027 is not found.\"}}" } }, - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?api-version=2020-06-14", + "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/testgroup5arkid/providers/Microsoft.Devices/IotHubs/iothub5arkid\",\r\n \"mappingRuleName\": \"EventsMapping1\",\r\n \"sharedAccessPolicyName\": \"registryRead\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { @@ -254,122 +82,36 @@ } }, "Response": { - "StatusCode": 202, + "StatusCode": 404, "Headers": { "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" ], + "x-ms-request-id": [ "24cadeeb-4186-4ff3-94cf-b77cf75ae210" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:50:55 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "750" ], - "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\"}}" - } - }, - "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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "720", "721" ], - "x-ms-client-request-id": [ "8ff496b8-49cc-4d74-b8f0-0fcb72d1521e", "8ff496b8-49cc-4d74-b8f0-0fcb72d1521e" ], - "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], - "FullCommandName": [ "Update-AzKustoDataConnection_Update", "Update-AzKustoDataConnection_Update" ], - "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-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-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": [ "d31d3fd2-2a8a-4b0e-a065-8f7a95a76b8d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140949Z:d31d3fd2-2a8a-4b0e-a065-8f7a95a76b8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:51:25 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:09:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "481" ], + "Content-Length": [ "301" ], "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": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh\u0027 is not found.\"}}" } }, - "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]+UpdateViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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" ], - "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" ], - "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" ], - "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-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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:51:26 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "778" ], - "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\"}}" - } - }, - "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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "723" ], - "x-ms-client-request-id": [ "4d2944b5-bb4e-421b-9f13-128505379a0e" ], + "x-ms-unique-id": [ "685" ], + "x-ms-client-request-id": [ "246c0f9a-24b2-4a4b-8420-f09c8e52ad4e" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -380,159 +122,36 @@ } }, "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": [ "e543079b-76a9-461f-b9a8-6165161e7ce6" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:51:26 GMT" ] - }, - "ContentHeaders": { - "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/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\"}}" - } - }, - "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": { - "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}", - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "429" ] - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "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" ], - "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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:51:27 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "765" ], - "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\"}}" - } - }, - "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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "724", "725" ], - "x-ms-client-request-id": [ "9fb36a05-1fd3-4e78-8352-0f4c8e5d96d6", "9fb36a05-1fd3-4e78-8352-0f4c8e5d96d6" ], - "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], - "FullCommandName": [ "Update-AzKustoDataConnection_UpdateViaIdentity", "Update-AzKustoDataConnection_UpdateViaIdentity" ], - "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": [ "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-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145158Z:a7e904da-c14b-4198-ac16-5a7fd6c2ff43" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:51:57 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "481" ], - "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\"}}" - } - }, - "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": { - "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", - "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" ], - "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" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "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": [ "a443e65d-f604-47c1-816f-5b9eb61ad1e1" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-correlation-request-id": [ "9caad470-86e0-4097-9790-29b53c7778de" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140949Z:9caad470-86e0-4097-9790-29b53c7778de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:51:58 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:09:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "793" ], + "Content-Length": [ "300" ], "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": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid\u0027 is not found.\"}}" } }, - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?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": [ "686" ], + "x-ms-client-request-id": [ "96990b65-8836-4737-8a94-5d92bed56a98" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -543,159 +162,36 @@ } }, "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "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-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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:51:59 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "924" ], - "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\"}}" - } - }, - "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": { - "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}", - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "584" ] - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "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" ], - "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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:51:59 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "922" ], - "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\"}}" - } - }, - "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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "728", "729" ], - "x-ms-client-request-id": [ "f72c80e2-2a4b-4315-9788-4e8cbcf99c4c", "f72c80e2-2a4b-4315-9788-4e8cbcf99c4c" ], - "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], - "FullCommandName": [ "Update-AzKustoDataConnection_UpdateViaIdentity", "Update-AzKustoDataConnection_UpdateViaIdentity" ], - "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-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-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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:52:29 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/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\"}}" - } - }, - "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": { - "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": [ "728", "729", "730" ], - "x-ms-client-request-id": [ "f72c80e2-2a4b-4315-9788-4e8cbcf99c4c", "f72c80e2-2a4b-4315-9788-4e8cbcf99c4c", "f72c80e2-2a4b-4315-9788-4e8cbcf99c4c" ], - "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" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "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": [ "313d9328-c8a7-4054-b396-06b51b191507" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "x-ms-correlation-request-id": [ "10c72e43-1790-4273-b499-0b666ff969be" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140950Z:10c72e43-1790-4273-b499-0b666ff969be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:52:29 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:09:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "923" ], + "Content-Length": [ "301" ], "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": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg\u0027 is not found.\"}}" } }, - "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?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": [ "687" ], + "x-ms-client-request-id": [ "1cad9cb4-7ef6-407b-a5d8-ae9356225961" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -706,149 +202,26 @@ } }, "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "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-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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:52:30 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "778" ], - "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\"}}" - } - }, - "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": { - "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}", - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "411" ] - } - }, - "Response": { - "StatusCode": 202, + "StatusCode": 404, "Headers": { "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" ], + "x-ms-request-id": [ "26035b12-514d-4237-b51e-7d7fc287ba25" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:52:30 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "749" ], - "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\"}}" - } - }, - "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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "732", "733" ], - "x-ms-client-request-id": [ "aaac9c47-4902-4f9a-b428-b0ea86b4b3ee", "aaac9c47-4902-4f9a-b428-b0ea86b4b3ee" ], - "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], - "FullCommandName": [ "Update-AzKustoDataConnection_UpdateViaIdentity", "Update-AzKustoDataConnection_UpdateViaIdentity" ], - "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": [ "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-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145301Z:2ba6fba9-5fba-41d3-9c4c-5fb6cd52c56c" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:53:01 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "481" ], - "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\"}}" - } - }, - "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": { - "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", - "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" ], - "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" ], - "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" ], - "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-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-ratelimit-remaining-subscription-resource-requests": [ "297" ], + "x-ms-correlation-request-id": [ "c3b5e450-811d-4f14-a821-5816d1941ae0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140951Z:c3b5e450-811d-4f14-a821-5816d1941ae0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:53:02 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:09:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "777" ], + "Content-Length": [ "301" ], "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": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh\u0027 is not found.\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Update-AzKustoDatabase.Recording.json b/src/Kusto/test/Update-AzKustoDatabase.Recording.json index 283aae0a0018..028461b12d1e 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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": [ "664" ], + "x-ms-client-request-id": [ "249dd5ff-6e60-4049-997e-bcc2fcd667b9" ], "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": [ "d101c954-f876-4b6e-a1c4-ddc060f677d8" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "dea71ea3-efa9-491f-87d4-ea31412e6907" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140738Z:dea71ea3-efa9-491f-87d4-ea31412e6907" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:47:45 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:07:37 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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/bdac1f18-db34-4f60-ad3e-b8681e34b42b?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "e759fabf-0928-4e58-9c25-b1a9d5a7c26f" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bdac1f18-db34-4f60-ad3e-b8681e34b42b?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "fff40464-e71f-4648-be98-bd854ccf1f48" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140738Z:fff40464-e71f-4648-be98-bd854ccf1f48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:47:46 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:07:38 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/bdac1f18-db34-4f60-ad3e-b8681e34b42b?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/bdac1f18-db34-4f60-ad3e-b8681e34b42b?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": [ "665", "666" ], + "x-ms-client-request-id": [ "a77be71a-8671-4ae4-ae2c-4c672c2a5a8d", "a77be71a-8671-4ae4-ae2c-4c672c2a5a8d" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDatabase", "Az.Kusto.internal\\Update-AzKustoDatabase" ], "FullCommandName": [ "Update-AzKustoDatabase_Update", "Update-AzKustoDatabase_Update" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -103,31 +103,31 @@ "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-request-id": [ "ae0aebc4-0b7b-47b4-bf34-af0f49e25d39" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "3ba50cfc-32f1-4122-931b-8d947718f2dd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140809Z:3ba50cfc-32f1-4122-931b-8d947718f2dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:16 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:08:08 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/bdac1f18-db34-4f60-ad3e-b8681e34b42b\",\"name\":\"bdac1f18-db34-4f60-ad3e-b8681e34b42b\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T14:07:38.7542247Z\",\"endTime\":\"2020-07-30T14:07:43.1921546Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"10dc3e41-bff2-42d7-9097-fd4eff0db4c4\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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": [ "665", "666", "667" ], + "x-ms-client-request-id": [ "a77be71a-8671-4ae4-ae2c-4c672c2a5a8d", "a77be71a-8671-4ae4-ae2c-4c672c2a5a8d", "a77be71a-8671-4ae4-ae2c-4c672c2a5a8d" ], "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": [ "cba67af7-f663-49da-8089-06ca51cd04b2" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "f453a318-05a7-4144-ab64-9efedece2219" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140809Z:f453a318-05a7-4144-ab64-9efedece2219" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:16 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:08:08 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?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": [ "668" ], + "x-ms-client-request-id": [ "95cffb97-dc0c-4f9f-a494-f2ffb0155575" ], "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": [ "dddb6ba3-e044-4bbb-b5aa-7f90a2926468" ], + "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "f08ea8e0-6863-4bef-8574-b818af5c126c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140810Z:f08ea8e0-6863-4bef-8574-b818af5c126c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:16 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:08:09 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid\",\"name\":\"testfclusterkgb956/testdatabase5arkid\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"attachedDatabaseConfigurationName\":\"testdbconfkgb956\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?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/907232b2-7dcb-43b7-841d-48ce67b79cc4?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "72df9e8f-c223-4823-b919-1bbe4ef338a1" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/907232b2-7dcb-43b7-841d-48ce67b79cc4?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "7884b0fd-5a12-41bc-9011-efdb7c9c6774" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140810Z:7884b0fd-5a12-41bc-9011-efdb7c9c6774" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:17 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:08:10 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid\",\"name\":\"testfclusterkgb956/testdatabase5arkid\",\"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/907232b2-7dcb-43b7-841d-48ce67b79cc4?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/907232b2-7dcb-43b7-841d-48ce67b79cc4?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": [ "669", "670" ], + "x-ms-client-request-id": [ "111aecdc-709c-48d9-b337-8d54465fbab3", "111aecdc-709c-48d9-b337-8d54465fbab3" ], "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-request-id": [ "e6c0da00-ca41-4e27-af97-5f8c0360d487" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "c6cc84f7-335c-4d55-8904-22afa768f573" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140841Z:c6cc84f7-335c-4d55-8904-22afa768f573" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:47 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:08:40 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/907232b2-7dcb-43b7-841d-48ce67b79cc4\",\"name\":\"907232b2-7dcb-43b7-841d-48ce67b79cc4\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T14:08:10.8047789Z\",\"endTime\":\"2020-07-30T14:08:12.5392989Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"97c851e8-be45-4b9c-b64c-9475cdd31a6b\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?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": [ "669", "670", "671" ], + "x-ms-client-request-id": [ "111aecdc-709c-48d9-b337-8d54465fbab3", "111aecdc-709c-48d9-b337-8d54465fbab3", "111aecdc-709c-48d9-b337-8d54465fbab3" ], "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": [ "fc673b5e-b137-4a04-a506-df35e27e1921" ], + "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "f3815997-9ecf-4dd4-af4f-bfa8581a0cdc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140841Z:f3815997-9ecf-4dd4-af4f-bfa8581a0cdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:48 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:08:40 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid\",\"name\":\"testfclusterkgb956/testdatabase5arkid\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"attachedDatabaseConfigurationName\":\"testdbconfkgb956\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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": [ "672" ], + "x-ms-client-request-id": [ "5b9f83f1-2346-492e-a886-e22470559976" ], "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": [ "338bd2ee-c3e7-4b1c-9143-4a027c23c66a" ], + "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "3d279904-2d09-4741-b011-00367110df31" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140842Z:3d279904-2d09-4741-b011-00367110df31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:48 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:08:41 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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": [ "673" ], + "x-ms-client-request-id": [ "9c6723ea-4862-4b99-8607-2d7d28b4947c" ], "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": [ "04f93540-80a7-49e6-9803-4dc43f4e097f" ], + "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "45595e66-ea17-4377-8383-07d3c04fe697" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140842Z:45595e66-ea17-4377-8383-07d3c04fe697" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:48 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:08:41 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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/e8a98d5d-ab6f-463c-bc0e-5703477026eb?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "8ec765f0-f5cc-47d9-ab30-38bc7b560d71" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8a98d5d-ab6f-463c-bc0e-5703477026eb?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "fd7842c3-bd24-46a4-92e3-91c1c45ab68f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140843Z:fd7842c3-bd24-46a4-92e3-91c1c45ab68f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:49 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:08:42 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/e8a98d5d-ab6f-463c-bc0e-5703477026eb?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/e8a98d5d-ab6f-463c-bc0e-5703477026eb?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": [ "674", "675" ], + "x-ms-client-request-id": [ "a9d48aae-826b-4585-9c53-797b2cc257a0", "a9d48aae-826b-4585-9c53-797b2cc257a0" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDatabase", "Az.Kusto.internal\\Update-AzKustoDatabase" ], "FullCommandName": [ "Update-AzKustoDatabase_UpdateViaIdentity", "Update-AzKustoDatabase_UpdateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -471,31 +471,31 @@ "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-request-id": [ "a1ff706b-1288-415f-8cdb-fe13956a791f" ], + "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "aa0827d0-9375-4eb5-ab0b-ed613c695a5c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140913Z:aa0827d0-9375-4eb5-ab0b-ed613c695a5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:49:19 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:09:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "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/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/e8a98d5d-ab6f-463c-bc0e-5703477026eb\",\"name\":\"e8a98d5d-ab6f-463c-bc0e-5703477026eb\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T14:08:43.144677Z\",\"endTime\":\"2020-07-30T14:08:45.301099Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"9d978ad0-ff7d-4c25-87b5-4e04033eb788\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?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": [ "674", "675", "676" ], + "x-ms-client-request-id": [ "a9d48aae-826b-4585-9c53-797b2cc257a0", "a9d48aae-826b-4585-9c53-797b2cc257a0", "a9d48aae-826b-4585-9c53-797b2cc257a0" ], "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": [ "02828413-de03-4dfb-ba94-140bd1f7446e" ], + "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "52a6e719-7e76-4a9c-8c86-dd5e4dd34699" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140914Z:52a6e719-7e76-4a9c-8c86-dd5e4dd34699" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:49:20 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:09:13 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?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": [ "677" ], + "x-ms-client-request-id": [ "8c8e1c6c-8913-47bc-b1bc-1cdf239bcb1a" ], "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": [ "92f308d3-81ae-4b7c-a60f-5cc67fed1b10" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "8ace7dff-ab5c-4e0c-8821-f50753d76c22" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140914Z:8ace7dff-ab5c-4e0c-8821-f50753d76c22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:49:20 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:09:14 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid\",\"name\":\"testfclusterkgb956/testdatabase5arkid\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"attachedDatabaseConfigurationName\":\"testdbconfkgb956\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?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": [ "678" ], + "x-ms-client-request-id": [ "8ecf3807-257c-47d3-a2c8-8b333f539f96" ], "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": [ "784929d9-cb48-4b49-ae92-03b697155a1b" ], + "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "1f9047ca-cdf9-4858-a04f-2d40f3d056ca" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140914Z:1f9047ca-cdf9-4858-a04f-2d40f3d056ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:49:20 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:09:14 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid\",\"name\":\"testfclusterkgb956/testdatabase5arkid\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"attachedDatabaseConfigurationName\":\"testdbconfkgb956\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?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/c42f8d36-f843-4662-853e-413d1a51b00c?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "f3620a81-0abc-41b7-bab1-8292d0f070dd" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c42f8d36-f843-4662-853e-413d1a51b00c?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "327695a8-739d-4e24-a815-c6e179c25a39" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140915Z:327695a8-739d-4e24-a815-c6e179c25a39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:49:21 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:09:15 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid\",\"name\":\"testfclusterkgb956/testdatabase5arkid\",\"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/c42f8d36-f843-4662-853e-413d1a51b00c?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/c42f8d36-f843-4662-853e-413d1a51b00c?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": [ "679", "680" ], + "x-ms-client-request-id": [ "d68a159d-cfb1-4c88-be98-8967ef27c0dc", "d68a159d-cfb1-4c88-be98-8967ef27c0dc" ], "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-request-id": [ "16cdceee-f005-48e3-872a-e0519bcb272d" ], + "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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-correlation-request-id": [ "1102e6da-2d24-4289-ad00-7836a687dc1b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140946Z:1102e6da-2d24-4289-ad00-7836a687dc1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:49:51 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:09:45 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/c42f8d36-f843-4662-853e-413d1a51b00c\",\"name\":\"c42f8d36-f843-4662-853e-413d1a51b00c\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T14:09:15.8322905Z\",\"endTime\":\"2020-07-30T14:09:18.675299Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"162822ee-c135-4203-ad2f-98b0eeda5dc5\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?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": [ "679", "680", "681" ], + "x-ms-client-request-id": [ "d68a159d-cfb1-4c88-be98-8967ef27c0dc", "d68a159d-cfb1-4c88-be98-8967ef27c0dc", "d68a159d-cfb1-4c88-be98-8967ef27c0dc" ], "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": [ "07572210-3cc2-4a5e-9b75-88a73ec72f0e" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "a0805eba-5197-44d2-aa3e-d7bba7a27c56" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140946Z:a0805eba-5197-44d2-aa3e-d7bba7a27c56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:49:51 GMT" ] + "Date": [ "Thu, 30 Jul 2020 14:09:46 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid\",\"name\":\"testfclusterkgb956/testdatabase5arkid\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"attachedDatabaseConfigurationName\":\"testdbconfkgb956\",\"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/deployment-templates/event-grid/parameters.json b/src/Kusto/test/deployment-templates/event-grid/parameters.json index f172e6df0896..528a4a0d870b 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": "eventhubnsgridql4uyh" + "value": "eventhubnsgridkgb956" }, "eventhubg_name": { - "value": "eventgridql4uyh" + "value": "eventgridkgb956" } } } diff --git a/src/Kusto/test/deployment-templates/event-hub/parameters.json b/src/Kusto/test/deployment-templates/event-hub/parameters.json index 667b0be4ee4f..844977853af9 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": "eventhubns6kcd7e" + "value": "eventhubns5arkid" }, "eventhub_name": { - "value": "eventhub6kcd7e" + "value": "eventhub5arkid" } } } diff --git a/src/Kusto/test/deployment-templates/storage-account/parameters.json b/src/Kusto/test/deployment-templates/storage-account/parameters.json index 399e01ec034d..434000e6e1e7 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": "storage6kcd7e" + "value": "storage5arkid" } } } diff --git a/src/Kusto/test/env.json b/src/Kusto/test/env.json index 812ed9fdbce1..cf9efc054940 100644 --- a/src/Kusto/test/env.json +++ b/src/Kusto/test/env.json @@ -1,45 +1,45 @@ { - "rstr5": "axb9i7", - "capacity": 2, - "defaultPrincipalsModificationKind": "Union", - "iothubSharedAccessPolicyName": "registryRead", - "principalType": "App", - "rstr4": "i6wlsf", + "eventhubNSNameForEventGrid": "eventhubnsgridkgb956", + "principalId1": "e60fe5c8-d6a5-4dee-b382-fb4502588dd0", "skuTier": "Standard", - "tableName": "Events", - "principalId": "713c3475-5021-4f3b-a650-eaa9a83f25a4", - "databasePrincipalAssignmentResourceType": "Microsoft.Kusto/Clusters/Databases/principalAssignments", - "eventhubNSNameForEventGrid": "eventhubnsgrid25n9il", - "location": "East US", - "dataConnectionName": "testdataconnectionpb8oay", - "SubscriptionId": "11d5f159-a21d-4a6c-8053-c3aae30057cf", - "followerClusterName": "testfcluster25n9il", - "eventhubNSName": "eventhubnspb8oay", + "attachedDatabaseConfigurationName": "testdbconfkgb956", + "principalType": "App", + "databaseName1": null, + "followerClusterName": "testfclusterkgb956", + "eventhubNameForEventGrid": "eventgridkgb956", + "rstr6": "qynp9a", + "iothubSharedAccessPolicyName": "registryRead", + "updatedSkuName": "Standard_D12_v2", + "dataConnectionName": "testdataconnection5arkid", + "rstr4": "ani9hf", + "storageName": "storage5arkid", + "principalAssignmentName": "KustoClientsScenarioTest", + "databaseName": "testdatabase5arkid", + "resourceGroupName": "testgroup5arkid", "dataFormat": "JSON", - "databasePrincipalRole": "Viewer", "dataConnectionResourceType": "Microsoft.Kusto/Clusters/Databases/dataConnections", - "principalAssignmentName": "KustoClientsScenarioTest", - "iothubName": "iothubpb8oay", - "resourceGroupName": "testgrouppb8oay", - "principalRole": "AllDatabasesViewer", - "principalAssignmentName1": "principalassignment1", - "databaseName": "testdatabasepb8oay", + "rstr5": "v8aetj", + "PlainClusterName": "testcluster0whu7z", + "tableName": "Events", "skuName": "Standard_D11_v2", - "attachedDatabaseConfigurationName": "testdbconf25n9il", - "storageName": "storagepb8oay", - "rstr6": "2tmpqx", - "resourceType": "Microsoft.Kusto/Clusters", - "eventhubName": "eventhubpb8oay", - "databaseName1": null, - "databaseType": "Microsoft.Kusto/Clusters/Databases", - "updatedSkuName": "Standard_D12_v2", - "principalId1": "e60fe5c8-d6a5-4dee-b382-fb4502588dd0", - "tableMappingName": "EventsMapping", + "clusterPrincipalAssignmentResourceType": "Microsoft.Kusto/clusters/principalAssignments", "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "PlainClusterName": "testclustervmhz6a", + "principalId": "713c3475-5021-4f3b-a650-eaa9a83f25a4", + "eventhubName": "eventhub5arkid", + "tableMappingName": "EventsMapping", + "iothubName": "iothub5arkid", + "principalRole": "AllDatabasesViewer", + "langExt1": "R", + "databaseType": "Microsoft.Kusto/Clusters/Databases", + "SubscriptionId": "11d5f159-a21d-4a6c-8053-c3aae30057cf", "langExt2": "PYTHON", - "eventhubNameForEventGrid": "eventgrid25n9il", - "clusterName": "testclusterpb8oay", - "clusterPrincipalAssignmentResourceType": "Microsoft.Kusto/clusters/principalAssignments", - "langExt1": "R" + "principalAssignmentName1": "principalassignment1", + "clusterName": "testcluster5arkid", + "capacity": 2, + "databasePrincipalRole": "Viewer", + "location": "East US", + "resourceType": "Microsoft.Kusto/Clusters", + "databasePrincipalAssignmentResourceType": "Microsoft.Kusto/Clusters/Databases/principalAssignments", + "eventhubNSName": "eventhubns5arkid", + "defaultPrincipalsModificationKind": "Union" } From 3caf0d45d0a864ba9b8716d17d66a8ad81c33382 Mon Sep 17 00:00:00 2001 From: Royi Shauli Date: Mon, 3 Aug 2020 10:42:26 +0300 Subject: [PATCH 07/13] Tests and docs fixes --- src/Kusto/Az.Kusto.psd1 | 2 +- ...Invoke-AzKustoDataConnectionValidation.ps1 | 38 +- .../custom/New-AzKustoDataConnection.ps1 | 32 +- .../custom/Update-AzKustoDataConnection.ps1 | 38 +- .../Add-AzKustoClusterLanguageExtension.md | 1 - .../docs/Add-AzKustoDatabasePrincipal.md | 1 - src/Kusto/docs/Az.Kusto.md | 2 +- ...et-AzKustoAttachedDatabaseConfiguration.md | 1 - src/Kusto/docs/Get-AzKustoCluster.md | 1 - .../Get-AzKustoClusterPrincipalAssignment.md | 1 - src/Kusto/docs/Get-AzKustoDataConnection.md | 1 - src/Kusto/docs/Get-AzKustoDatabase.md | 1 - .../Get-AzKustoDatabasePrincipalAssignment.md | 1 - .../Invoke-AzKustoDataConnectionValidation.md | 63 +- ...ke-AzKustoDetachClusterFollowerDatabase.md | 1 - ...ke-AzKustoDiagnoseClusterVirtualNetwork.md | 1 - src/Kusto/docs/New-AzKustoCluster.md | 1 - src/Kusto/docs/New-AzKustoDataConnection.md | 60 +- ...ve-AzKustoAttachedDatabaseConfiguration.md | 1 - src/Kusto/docs/Remove-AzKustoCluster.md | 1 - .../Remove-AzKustoClusterLanguageExtension.md | 1 - ...emove-AzKustoClusterPrincipalAssignment.md | 1 - .../docs/Remove-AzKustoDataConnection.md | 1 - src/Kusto/docs/Remove-AzKustoDatabase.md | 1 - .../docs/Remove-AzKustoDatabasePrincipal.md | 1 - ...move-AzKustoDatabasePrincipalAssignment.md | 1 - src/Kusto/docs/Start-AzKustoCluster.md | 1 - src/Kusto/docs/Stop-AzKustoCluster.md | 1 - .../Test-AzKustoClusterNameAvailability.md | 1 - ...sterPrincipalAssignmentNameAvailability.md | 1 - ...t-AzKustoDataConnectionNameAvailability.md | 1 - .../Test-AzKustoDatabaseNameAvailability.md | 1 - ...basePrincipalAssignmentNameAvailability.md | 1 - src/Kusto/docs/Update-AzKustoCluster.md | 1 - .../docs/Update-AzKustoDataConnection.md | 51 +- src/Kusto/docs/Update-AzKustoDatabase.md | 1 - src/Kusto/readme.md | 2 +- ...stoClusterLanguageExtension.Recording.json | 947 +++--- ...tachedDatabaseConfiguration.Recording.json | 40 +- .../test/Get-AzKustoCluster.Recording.json | 44 +- ...ustoClusterFollowerDatabase.Recording.json | 20 +- ...stoClusterLanguageExtension.Recording.json | 18 +- ...oClusterPrincipalAssignment.Recording.json | 40 +- .../test/Get-AzKustoClusterSku.Recording.json | 46 +- .../test/Get-AzKustoClusterSku.Tests.ps1 | 4 +- .../Get-AzKustoDataConnection.Recording.json | 56 +- .../test/Get-AzKustoDataConnection.Tests.ps1 | 10 +- .../test/Get-AzKustoDatabase.Recording.json | 40 +- ...et-AzKustoDatabasePrincipal.Recording.json | 22 +- ...DatabasePrincipalAssignment.Recording.json | 40 +- ...stoDataConnectionValidation.Recording.json | 643 +++-- ...-AzKustoDataConnectionValidation.Tests.ps1 | 30 +- ...tachClusterFollowerDatabase.Recording.json | 524 ++-- ...agnoseClusterVirtualNetwork.Recording.json | 544 ++-- ...tachedDatabaseConfiguration.Recording.json | 252 +- .../test/New-AzKustoCluster.Recording.json | 1203 ++++---- ...oClusterPrincipalAssignment.Recording.json | 122 +- .../New-AzKustoDataConnection.Recording.json | 574 +++- .../test/New-AzKustoDataConnection.Tests.ps1 | 21 +- .../test/New-AzKustoDatabase.Recording.json | 244 +- ...DatabasePrincipalAssignment.Recording.json | 122 +- ...tachedDatabaseConfiguration.Recording.json | 244 +- .../test/Remove-AzKustoCluster.Recording.json | 1427 ++++----- ...stoClusterLanguageExtension.Recording.json | 299 +- ...oClusterPrincipalAssignment.Recording.json | 128 +- ...emove-AzKustoDataConnection.Recording.json | 181 +- .../Remove-AzKustoDataConnection.Tests.ps1 | 5 +- .../Remove-AzKustoDatabase.Recording.json | 128 +- ...ve-AzKustoDatabasePrincipal.Recording.json | 72 +- ...DatabasePrincipalAssignment.Recording.json | 130 +- .../test/Start-AzKustoCluster.Recording.json | 2554 ++++++----------- .../test/Stop-AzKustoCluster.Recording.json | 2028 +++++-------- ...ustoClusterNameAvailability.Recording.json | 16 +- ...lAssignmentNameAvailability.Recording.json | 54 +- ...aConnectionNameAvailability.Recording.json | 60 +- ...stoDatabaseNameAvailability.Recording.json | 60 +- ...lAssignmentNameAvailability.Recording.json | 182 +- .../test/Update-AzKustoCluster.Recording.json | 712 ++--- ...pdate-AzKustoDataConnection.Recording.json | 777 ++++- .../Update-AzKustoDataConnection.Tests.ps1 | 42 +- .../Update-AzKustoDatabase.Recording.json | 370 +-- src/Kusto/test/common.ps1 | 18 - src/Kusto/test/constants.json | 3 - .../event-grid/parameters.json | 4 +- .../event-hub/parameters.json | 4 +- .../storage-account/parameters.json | 2 +- src/Kusto/test/env.json | 71 +- src/Kusto/test/utils.ps1 | 22 +- 88 files changed, 7336 insertions(+), 8179 deletions(-) diff --git a/src/Kusto/Az.Kusto.psd1 b/src/Kusto/Az.Kusto.psd1 index 9387805f3560..4627917f3798 100644 --- a/src/Kusto/Az.Kusto.psd1 +++ b/src/Kusto/Az.Kusto.psd1 @@ -1,5 +1,5 @@ @{ - GUID = '8bac1098-6d26-40ba-aad1-a2442a0d0a4a' + GUID = '18c61846-f6f0-425e-ba4b-5cf903e2bdd8' RootModule = './Az.Kusto.psm1' ModuleVersion = '0.1.4' CompatiblePSEditions = 'Core', 'Desktop' diff --git a/src/Kusto/custom/Invoke-AzKustoDataConnectionValidation.ps1 b/src/Kusto/custom/Invoke-AzKustoDataConnectionValidation.ps1 index a7c29dbce03a..cc560f78fac6 100644 --- a/src/Kusto/custom/Invoke-AzKustoDataConnectionValidation.ps1 +++ b/src/Kusto/custom/Invoke-AzKustoDataConnectionValidation.ps1 @@ -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. @@ -255,6 +259,16 @@ function Invoke-AzKustoDataConnectionValidation { $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.Api20200614.IotHubDataConnection]::new() diff --git a/src/Kusto/custom/New-AzKustoDataConnection.ps1 b/src/Kusto/custom/New-AzKustoDataConnection.ps1 index 7f340a41e92a..c52d4b31f4a9 100644 --- a/src/Kusto/custom/New-AzKustoDataConnection.ps1 +++ b/src/Kusto/custom/New-AzKustoDataConnection.ps1 @@ -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. @@ -231,6 +241,16 @@ function New-AzKustoDataConnection { $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.Api20200614.IotHubDataConnection]::new() diff --git a/src/Kusto/custom/Update-AzKustoDataConnection.ps1 b/src/Kusto/custom/Update-AzKustoDataConnection.ps1 index 281299491dc6..06b3d9e19aad 100644 --- a/src/Kusto/custom/Update-AzKustoDataConnection.ps1 +++ b/src/Kusto/custom/Update-AzKustoDataConnection.ps1 @@ -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. @@ -264,6 +268,16 @@ function Update-AzKustoDataConnection { $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.Api20200614.IotHubDataConnection]::new() diff --git a/src/Kusto/docs/Add-AzKustoClusterLanguageExtension.md b/src/Kusto/docs/Add-AzKustoClusterLanguageExtension.md index 3e00944145b9..95cfd03a1cb4 100644 --- a/src/Kusto/docs/Add-AzKustoClusterLanguageExtension.md +++ b/src/Kusto/docs/Add-AzKustoClusterLanguageExtension.md @@ -224,7 +224,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Add-AzKustoDatabasePrincipal.md b/src/Kusto/docs/Add-AzKustoDatabasePrincipal.md index 9810f3444899..232267a565a7 100644 --- a/src/Kusto/docs/Add-AzKustoDatabasePrincipal.md +++ b/src/Kusto/docs/Add-AzKustoDatabasePrincipal.md @@ -199,7 +199,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Az.Kusto.md b/src/Kusto/docs/Az.Kusto.md index 35c382cbfcfd..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: 8bac1098-6d26-40ba-aad1-a2442a0d0a4a +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 57c511580db7..5d2b3e5a725f 100644 --- a/src/Kusto/docs/Get-AzKustoAttachedDatabaseConfiguration.md +++ b/src/Kusto/docs/Get-AzKustoAttachedDatabaseConfiguration.md @@ -167,7 +167,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Get-AzKustoCluster.md b/src/Kusto/docs/Get-AzKustoCluster.md index 72aa037ed7bf..04a30f36a33c 100644 --- a/src/Kusto/docs/Get-AzKustoCluster.md +++ b/src/Kusto/docs/Get-AzKustoCluster.md @@ -157,7 +157,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Get-AzKustoClusterPrincipalAssignment.md b/src/Kusto/docs/Get-AzKustoClusterPrincipalAssignment.md index 46d4faba5d6a..dded28267b57 100644 --- a/src/Kusto/docs/Get-AzKustoClusterPrincipalAssignment.md +++ b/src/Kusto/docs/Get-AzKustoClusterPrincipalAssignment.md @@ -167,7 +167,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Get-AzKustoDataConnection.md b/src/Kusto/docs/Get-AzKustoDataConnection.md index 0b3ffe29dda0..ce57da37d8e9 100644 --- a/src/Kusto/docs/Get-AzKustoDataConnection.md +++ b/src/Kusto/docs/Get-AzKustoDataConnection.md @@ -181,7 +181,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Get-AzKustoDatabase.md b/src/Kusto/docs/Get-AzKustoDatabase.md index 6bad73b0202e..59680cbf76ba 100644 --- a/src/Kusto/docs/Get-AzKustoDatabase.md +++ b/src/Kusto/docs/Get-AzKustoDatabase.md @@ -167,7 +167,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Get-AzKustoDatabasePrincipalAssignment.md b/src/Kusto/docs/Get-AzKustoDatabasePrincipalAssignment.md index 060f30fa2170..6dd8f6c9bc4b 100644 --- a/src/Kusto/docs/Get-AzKustoDatabasePrincipalAssignment.md +++ b/src/Kusto/docs/Get-AzKustoDatabasePrincipalAssignment.md @@ -185,7 +185,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Invoke-AzKustoDataConnectionValidation.md b/src/Kusto/docs/Invoke-AzKustoDataConnectionValidation.md index 126d306f6056..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. @@ -225,7 +256,7 @@ 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 @@ -277,6 +308,21 @@ Accept pipeline input: False Accept wildcard characters: 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 Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. @@ -424,7 +470,7 @@ Type: System.String Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -478,7 +524,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Invoke-AzKustoDetachClusterFollowerDatabase.md b/src/Kusto/docs/Invoke-AzKustoDetachClusterFollowerDatabase.md index 3c42ad2d04b6..fed8580ab711 100644 --- a/src/Kusto/docs/Invoke-AzKustoDetachClusterFollowerDatabase.md +++ b/src/Kusto/docs/Invoke-AzKustoDetachClusterFollowerDatabase.md @@ -240,7 +240,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Invoke-AzKustoDiagnoseClusterVirtualNetwork.md b/src/Kusto/docs/Invoke-AzKustoDiagnoseClusterVirtualNetwork.md index f1ef2567264a..ecb53bb1aa37 100644 --- a/src/Kusto/docs/Invoke-AzKustoDiagnoseClusterVirtualNetwork.md +++ b/src/Kusto/docs/Invoke-AzKustoDiagnoseClusterVirtualNetwork.md @@ -194,7 +194,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/New-AzKustoCluster.md b/src/Kusto/docs/New-AzKustoCluster.md index f5edc184a9ed..8725fafd57ae 100644 --- a/src/Kusto/docs/New-AzKustoCluster.md +++ b/src/Kusto/docs/New-AzKustoCluster.md @@ -544,7 +544,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/New-AzKustoDataConnection.md b/src/Kusto/docs/New-AzKustoDataConnection.md index 6e9bfa08a2cd..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. @@ -96,6 +114,21 @@ Accept pipeline input: False Accept wildcard characters: 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 The name of the Kusto cluster. @@ -165,7 +198,7 @@ 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 @@ -217,6 +250,21 @@ Accept pipeline input: False Accept wildcard characters: 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 The resource ID of the Iot hub to be used to create a data connection. @@ -378,7 +426,7 @@ Type: System.String Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False diff --git a/src/Kusto/docs/Remove-AzKustoAttachedDatabaseConfiguration.md b/src/Kusto/docs/Remove-AzKustoAttachedDatabaseConfiguration.md index ea8d29749292..2fc17acea054 100644 --- a/src/Kusto/docs/Remove-AzKustoAttachedDatabaseConfiguration.md +++ b/src/Kusto/docs/Remove-AzKustoAttachedDatabaseConfiguration.md @@ -223,7 +223,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Remove-AzKustoCluster.md b/src/Kusto/docs/Remove-AzKustoCluster.md index c155ff4a61b0..e79f1dd9f7b3 100644 --- a/src/Kusto/docs/Remove-AzKustoCluster.md +++ b/src/Kusto/docs/Remove-AzKustoCluster.md @@ -207,7 +207,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Remove-AzKustoClusterLanguageExtension.md b/src/Kusto/docs/Remove-AzKustoClusterLanguageExtension.md index 366a9f0baee7..4cb0adb0f375 100644 --- a/src/Kusto/docs/Remove-AzKustoClusterLanguageExtension.md +++ b/src/Kusto/docs/Remove-AzKustoClusterLanguageExtension.md @@ -224,7 +224,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Remove-AzKustoClusterPrincipalAssignment.md b/src/Kusto/docs/Remove-AzKustoClusterPrincipalAssignment.md index 4e24bf7c0b8f..aa8256df90ac 100644 --- a/src/Kusto/docs/Remove-AzKustoClusterPrincipalAssignment.md +++ b/src/Kusto/docs/Remove-AzKustoClusterPrincipalAssignment.md @@ -223,7 +223,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Remove-AzKustoDataConnection.md b/src/Kusto/docs/Remove-AzKustoDataConnection.md index 39223f49e943..ba502de125e9 100644 --- a/src/Kusto/docs/Remove-AzKustoDataConnection.md +++ b/src/Kusto/docs/Remove-AzKustoDataConnection.md @@ -238,7 +238,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Remove-AzKustoDatabase.md b/src/Kusto/docs/Remove-AzKustoDatabase.md index 56d3b87840ec..1a718781f327 100644 --- a/src/Kusto/docs/Remove-AzKustoDatabase.md +++ b/src/Kusto/docs/Remove-AzKustoDatabase.md @@ -223,7 +223,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Remove-AzKustoDatabasePrincipal.md b/src/Kusto/docs/Remove-AzKustoDatabasePrincipal.md index 35674d0e2b4f..b90398587138 100644 --- a/src/Kusto/docs/Remove-AzKustoDatabasePrincipal.md +++ b/src/Kusto/docs/Remove-AzKustoDatabasePrincipal.md @@ -198,7 +198,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Remove-AzKustoDatabasePrincipalAssignment.md b/src/Kusto/docs/Remove-AzKustoDatabasePrincipalAssignment.md index 378f71954aa5..e4c499517228 100644 --- a/src/Kusto/docs/Remove-AzKustoDatabasePrincipalAssignment.md +++ b/src/Kusto/docs/Remove-AzKustoDatabasePrincipalAssignment.md @@ -238,7 +238,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Start-AzKustoCluster.md b/src/Kusto/docs/Start-AzKustoCluster.md index dff980915fca..69795ce7e2d5 100644 --- a/src/Kusto/docs/Start-AzKustoCluster.md +++ b/src/Kusto/docs/Start-AzKustoCluster.md @@ -207,7 +207,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Stop-AzKustoCluster.md b/src/Kusto/docs/Stop-AzKustoCluster.md index fa9d95320436..ced90e65dc4c 100644 --- a/src/Kusto/docs/Stop-AzKustoCluster.md +++ b/src/Kusto/docs/Stop-AzKustoCluster.md @@ -207,7 +207,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Test-AzKustoClusterNameAvailability.md b/src/Kusto/docs/Test-AzKustoClusterNameAvailability.md index 069516e05d67..560922bd05de 100644 --- a/src/Kusto/docs/Test-AzKustoClusterNameAvailability.md +++ b/src/Kusto/docs/Test-AzKustoClusterNameAvailability.md @@ -192,7 +192,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md b/src/Kusto/docs/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md index 26d23cbae256..e5e55d44e878 100644 --- a/src/Kusto/docs/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md +++ b/src/Kusto/docs/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md @@ -208,7 +208,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Test-AzKustoDataConnectionNameAvailability.md b/src/Kusto/docs/Test-AzKustoDataConnectionNameAvailability.md index 82e4b1ad0912..b18ec4093896 100644 --- a/src/Kusto/docs/Test-AzKustoDataConnectionNameAvailability.md +++ b/src/Kusto/docs/Test-AzKustoDataConnectionNameAvailability.md @@ -223,7 +223,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Test-AzKustoDatabaseNameAvailability.md b/src/Kusto/docs/Test-AzKustoDatabaseNameAvailability.md index 9b97bdfb2e6b..f46a0222bcfc 100644 --- a/src/Kusto/docs/Test-AzKustoDatabaseNameAvailability.md +++ b/src/Kusto/docs/Test-AzKustoDatabaseNameAvailability.md @@ -208,7 +208,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md b/src/Kusto/docs/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md index d9d5ff1b076e..c75a7df4530f 100644 --- a/src/Kusto/docs/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md +++ b/src/Kusto/docs/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md @@ -223,7 +223,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Update-AzKustoCluster.md b/src/Kusto/docs/Update-AzKustoCluster.md index e96e02c14c39..5915313dcf0e 100644 --- a/src/Kusto/docs/Update-AzKustoCluster.md +++ b/src/Kusto/docs/Update-AzKustoCluster.md @@ -573,7 +573,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Update-AzKustoDataConnection.md b/src/Kusto/docs/Update-AzKustoDataConnection.md index 173f56e7c69a..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 @@ -157,6 +159,21 @@ Accept pipeline input: False Accept wildcard characters: 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 The name of the Kusto cluster. @@ -226,7 +243,7 @@ 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 @@ -278,6 +295,21 @@ Accept pipeline input: False Accept wildcard characters: 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 Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table. @@ -455,7 +487,7 @@ Type: System.String Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -509,7 +541,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/docs/Update-AzKustoDatabase.md b/src/Kusto/docs/Update-AzKustoDatabase.md index 59d528247554..cccdb5c0e639 100644 --- a/src/Kusto/docs/Update-AzKustoDatabase.md +++ b/src/Kusto/docs/Update-AzKustoDatabase.md @@ -314,7 +314,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable 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. diff --git a/src/Kusto/readme.md b/src/Kusto/readme.md index 2b8a77800091..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.8.1 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. diff --git a/src/Kusto/test/Add-AzKustoClusterLanguageExtension.Recording.json b/src/Kusto/test/Add-AzKustoClusterLanguageExtension.Recording.json index 8e8a58ef9208..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/addLanguageExtensions?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/addLanguageExtensions?api-version=2020-06-14", + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "214c8520-1f1d-4fb7-8662-191780e0ec4e" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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/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": [ "ac574707-e600-4afc-a638-5874eab30093" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T084751Z:ac574707-e600-4afc-a638-5874eab30093" ], + "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, 30 Jul 2020 08:47:51 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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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": [ "283" ], - "x-ms-request-id": [ "3581d62e-b98f-41b7-9642-9f3492e30d9a" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "ffd89fc6-549f-4db8-9a33-b76053e0176d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T084823Z:ffd89fc6-549f-4db8-9a33-b76053e0176d" ], + "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, 30 Jul 2020 08:48:22 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:11:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "ad4ad7e7-995a-46c8-9683-ab2e5bc21764" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "3dee628b-8cc1-4c3d-af9a-1fa6278b1771" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T084857Z:3dee628b-8cc1-4c3d-af9a-1fa6278b1771" ], + "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, 30 Jul 2020 08:48:56 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:11:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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": [ "281" ], - "x-ms-request-id": [ "4cf41998-4f14-4a58-a7fd-dad235defe45" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "9dad19c3-6790-4209-9c8e-9185b9aa8647" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T084930Z:9dad19c3-6790-4209-9c8e-9185b9aa8647" ], + "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, 30 Jul 2020 08:49:29 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:12:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119", "120" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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": [ "290" ], - "x-ms-request-id": [ "daccc0aa-a8b6-4fe3-bdc8-26a185379d50" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "36887bd9-5c03-4232-8f7b-602fcdb6d5a1" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085002Z:36887bd9-5c03-4232-8f7b-602fcdb6d5a1" ], + "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, 30 Jul 2020 08:50:02 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:12:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119", "120", "121" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "0ff65a57-2b14-4517-a3eb-e1025a444507" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "a1f0575e-b0f7-48da-9a72-977443289f50" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085036Z:a1f0575e-b0f7-48da-9a72-977443289f50" ], + "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, 30 Jul 2020 08:50:35 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:13:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119", "120", "121", "122" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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": [ "288" ], - "x-ms-request-id": [ "c88f4149-50fa-4c65-baa1-092308c7e23c" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "cc432ed3-e481-46b7-a705-ef8531a0c37d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085109Z:cc432ed3-e481-46b7-a705-ef8531a0c37d" ], + "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, 30 Jul 2020 08:51:09 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:13:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119", "120", "121", "122", "123" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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": [ "287" ], - "x-ms-request-id": [ "bf0287dc-e65c-4ccf-833d-d751ea0bd0a3" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "17a5162a-3e45-47db-a330-e5cc7247b1c6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085140Z:17a5162a-3e45-47db-a330-e5cc7247b1c6" ], + "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, 30 Jul 2020 08:51:39 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:14:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "d6a0877c-8afc-4bbe-8dea-3c81e2c5cbc6" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "15934263-ddec-4021-852b-1ddda4bcf09e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085210Z:15934263-ddec-4021-852b-1ddda4bcf09e" ], + "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, 30 Jul 2020 08:52:10 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:14:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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-correlation-request-id": [ "4900d0f1-e98c-4128-b93e-d5ba571e2b6b" ], - "x-ms-request-id": [ "13ef9801-80d3-4fdf-8380-924250995276" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-routing-request-id": [ "NORTHEUROPE:20200730T085243Z:4900d0f1-e98c-4128-b93e-d5ba571e2b6b" ], + "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, 30 Jul 2020 08:52:43 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:15:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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": [ "284" ], - "x-ms-request-id": [ "6282c6fb-c474-49fb-9b1b-5ea2296bfe14" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "2a28b3be-e6d5-40dc-8ea6-4da70766c3e3" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085314Z:2a28b3be-e6d5-40dc-8ea6-4da70766c3e3" ], + "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, 30 Jul 2020 08:53:13 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:15:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "fa3ba1a8-9299-40bf-bf55-cf6ea1cce4a4" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "2d367c5d-9702-4102-bb8c-970c4ec0b8c9" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085346Z:2d367c5d-9702-4102-bb8c-970c4ec0b8c9" ], + "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, 30 Jul 2020 08:53:46 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:16:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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": [ "282" ], - "x-ms-request-id": [ "a28d0fdf-d888-458c-b365-181ed1110d60" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "a232445c-db7e-48d2-9d34-2938b0f95b91" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085422Z:a232445c-db7e-48d2-9d34-2938b0f95b91" ], + "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, 30 Jul 2020 08:54:21 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:16:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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": [ "281" ], - "x-ms-request-id": [ "fd256a6d-842a-4506-9a27-c572c32b16ac" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "34d5ca62-af4e-4028-bbf8-26b70edbdb10" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085457Z:34d5ca62-af4e-4028-bbf8-26b70edbdb10" ], + "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, 30 Jul 2020 08:54:57 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:17:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "8c7720b0-070f-4633-b707-c6d2d3e0b79d" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "adf14bb0-6974-4ffa-8eb1-a1082370c199" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085527Z:adf14bb0-6974-4ffa-8eb1-a1082370c199" ], + "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, 30 Jul 2020 08:55:26 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:17:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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": [ "288" ], - "x-ms-request-id": [ "1ec9e301-9f1e-4858-80e5-8c2f1a757ab4" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "99b000f4-985f-40f4-9716-ccf87a6cbb91" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085557Z:99b000f4-985f-40f4-9716-ccf87a6cbb91" ], + "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, 30 Jul 2020 08:55:57 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:18:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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": [ "287" ], - "x-ms-request-id": [ "cbada3c8-0b45-4749-9eb7-18d608c853c8" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "ab05ea24-8d95-450b-9642-78987e0bd165" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085628Z:ab05ea24-8d95-450b-9642-78987e0bd165" ], + "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, 30 Jul 2020 08:56:27 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:18:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "6234ec65-43b0-4c9b-82a3-1db9e6ea4918" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "6beacbfc-0257-4225-b318-848bec45ce51" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085658Z:6beacbfc-0257-4225-b318-848bec45ce51" ], + "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, 30 Jul 2020 08:56:57 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:19:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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": [ "285" ], - "x-ms-request-id": [ "f7795266-f1e4-442c-aaf4-9e7dfb23e677" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "eaddd231-c882-486f-90e9-b13eb0569e4e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085728Z:eaddd231-c882-486f-90e9-b13eb0569e4e" ], + "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, 30 Jul 2020 08:57:28 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:19:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:48:13.3564633Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14", + "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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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": [ "284" ], - "x-ms-request-id": [ "abdd3abf-2eb2-4fc4-a7da-87448a4e30f2" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "cb95cec0-f3aa-4169-bbf2-3853768eccac" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085758Z:cb95cec0-f3aa-4169-bbf2-3853768eccac" ], + "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, 30 Jul 2020 08:57:58 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:20:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "507" ], + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"name\":\"bf08514d-834e-4bf2-bf4c-642f3931ba26\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T08:47:51.3392665Z\",\"endTime\":\"2020-07-30T08:57:44.5327464Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"7ac75a79-bd4d-42be-9c56-7f0148212b77\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14\u0026operationResultResponseType=Location+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/bf08514d-834e-4bf2-bf4c-642f3931ba26?api-version=2020-06-14\u0026operationResultResponseType=Location", + "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": [ "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136" ], - "x-ms-client-request-id": [ "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02", "e0f827c1-cd62-4840-be6c-fc8c1af0cb02" ], + "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,15 +836,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "21fbe4fb-e8e7-4b3c-acf9-b0cafaa75d81" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-correlation-request-id": [ "f4703c92-52c7-4560-bfe4-db435426588d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085759Z:f4703c92-52c7-4560-bfe4-db435426588d" ], + "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, 30 Jul 2020 08:57:58 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:20:13 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -853,14 +853,14 @@ "Content": null } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14", + "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": [ "137" ], - "x-ms-client-request-id": [ "c11dd2b5-0876-487a-82d4-a5b9305e125b" ], + "x-ms-unique-id": [ "142" ], + "x-ms-client-request-id": [ "0aa027cd-8ea0-4798-8c40-8e392e51d734" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -878,27 +878,27 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "299fc99d-d58d-4261-8ac5-90c8b6ef9113" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "8dbf9cf5-4912-4cdd-91fc-cdf46b42e2e5" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085800Z:8dbf9cf5-4912-4cdd-91fc-cdf46b42e2e5" ], + "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, 30 Jul 2020 08:57:59 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:20:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "823" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/addLanguageExtensions?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/addLanguageExtensions?api-version=2020-06-14", + "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": { }, @@ -912,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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "ce0b5f81-2477-44d5-86cb-b10d63649e2b" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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/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": [ "28971620-dd5b-4360-bc98-e61d2bd2dac5" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085801Z:28971620-dd5b-4360-bc98-e61d2bd2dac5" ], + "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, 30 Jul 2020 08:58:00 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:20:14 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -931,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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -954,32 +954,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "e9b737cb-9ab3-4074-951f-0f11aadc0ce8" ], - "x-ms-request-id": [ "49288dc7-0e1a-4b89-ab57-113458bd04c0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-routing-request-id": [ "NORTHEUROPE:20200730T085831Z:e9b737cb-9ab3-4074-951f-0f11aadc0ce8" ], + "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, 30 Jul 2020 08:58:30 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:20:44 GMT" ] }, "ContentHeaders": { "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139", "140" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -995,32 +995,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "db3f9daa-d64a-4bd7-938d-3565e3194a4b" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "33f29285-737d-49a7-b48c-4b0825cf0b20" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085902Z:33f29285-737d-49a7-b48c-4b0825cf0b20" ], + "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, 30 Jul 2020 08:59:02 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:21:15 GMT" ] }, "ContentHeaders": { "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139", "140", "141" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -1036,32 +1036,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "902caf8d-0eee-48a4-b774-f8ffcfc1dc22" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "c184ac14-257f-4e18-83ab-68966fe74f80" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T085932Z:c184ac14-257f-4e18-83ab-68966fe74f80" ], + "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, 30 Jul 2020 08:59:31 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:21:45 GMT" ] }, "ContentHeaders": { "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139", "140", "141", "142" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -1077,32 +1077,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "73556a56-a1f0-4861-ace6-d78b421d6638" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "5f8f6091-9bea-41a0-a3ef-16d438a66f3c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090003Z:5f8f6091-9bea-41a0-a3ef-16d438a66f3c" ], + "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, 30 Jul 2020 09:00:02 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:22:15 GMT" ] }, "ContentHeaders": { "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139", "140", "141", "142", "143" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -1118,32 +1118,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "31a2d54e-f327-43f1-9928-5b00a59b903d" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "f7c69f2b-73e8-4f58-bf13-1b8a17ff6e87" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090033Z:f7c69f2b-73e8-4f58-bf13-1b8a17ff6e87" ], + "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, 30 Jul 2020 09:00:32 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:22:45 GMT" ] }, "ContentHeaders": { "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139", "140", "141", "142", "143", "144" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -1159,32 +1159,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "ddbc4c46-fa1b-47c0-9aea-75f0b101626e" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "fe7e514b-4bfc-4541-9577-13baa3af2b80" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090103Z:fe7e514b-4bfc-4541-9577-13baa3af2b80" ], + "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, 30 Jul 2020 09:01:03 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:23:15 GMT" ] }, "ContentHeaders": { "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139", "140", "141", "142", "143", "144", "145" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -1200,32 +1200,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "dfdcd2c5-8e0c-41db-afe7-b613fc866eae" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "cbc27bd6-9bb1-4764-b40d-484fcb245323" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090133Z:cbc27bd6-9bb1-4764-b40d-484fcb245323" ], + "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, 30 Jul 2020 09:01:33 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:23:46 GMT" ] }, "ContentHeaders": { "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -1241,32 +1241,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "2310e6e2-22c3-4378-b5b6-0f2c65f79d97" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "58b56773-aefc-4685-9fbf-4434939ff89a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090204Z:58b56773-aefc-4685-9fbf-4434939ff89a" ], + "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, 30 Jul 2020 09:02:04 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:24:16 GMT" ] }, "ContentHeaders": { "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -1282,32 +1282,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "685c0fd1-e2e0-4827-a6ab-865713345d9d" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "05b0f841-b2a3-40e1-94e8-2beaf2383434" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090234Z:05b0f841-b2a3-40e1-94e8-2beaf2383434" ], + "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, 30 Jul 2020 09:02:33 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:24:47 GMT" ] }, "ContentHeaders": { "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -1323,32 +1323,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "1aefa651-602a-4406-bebc-21d52e315860" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "7a95abb7-4d6e-4574-9643-313c7d55822d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090304Z:7a95abb7-4d6e-4574-9643-313c7d55822d" ], + "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, 30 Jul 2020 09:03:04 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:25:17 GMT" ] }, "ContentHeaders": { "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -1364,32 +1364,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "1b78bd24-eb7c-4de4-97e3-694a994f57f0" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "45f602cb-510c-4483-b0a0-b5f590884f32" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090334Z:45f602cb-510c-4483-b0a0-b5f590884f32" ], + "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, 30 Jul 2020 09:03:34 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:25:46 GMT" ] }, "ContentHeaders": { "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -1405,32 +1405,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "dc50196e-d4c7-477f-994b-842ad4756b94" ], - "x-ms-request-id": [ "1e84c7f0-7bda-4ea2-a7a9-e4584fadbf53" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-routing-request-id": [ "NORTHEUROPE:20200730T090405Z:dc50196e-d4c7-477f-994b-842ad4756b94" ], + "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, 30 Jul 2020 09:04:04 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:26:17 GMT" ] }, "ContentHeaders": { "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150", "151" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -1446,32 +1446,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "23339b4d-7564-464d-a8fc-b133b0d6076e" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "225974f2-325b-4440-8bed-0c8102421721" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090435Z:225974f2-325b-4440-8bed-0c8102421721" ], + "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, 30 Jul 2020 09:04:35 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:26:47 GMT" ] }, "ContentHeaders": { "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150", "151", "152" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -1487,32 +1487,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "e20a5057-f712-4b9d-971e-5e167a0b4eef" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "fa2a4879-9bc5-40fb-99e2-05fa1d1036b7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090505Z:fa2a4879-9bc5-40fb-99e2-05fa1d1036b7" ], + "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, 30 Jul 2020 09:05:05 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:27:17 GMT" ] }, "ContentHeaders": { "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -1528,32 +1528,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "d14f9ee9-4b14-4c1d-9110-f2789aac0e2e" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "196be133-0a40-4ecb-8cfe-a10459315660" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090536Z:196be133-0a40-4ecb-8cfe-a10459315660" ], + "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, 30 Jul 2020 09:05:35 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:27:49 GMT" ] }, "ContentHeaders": { "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153", "154" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -1569,32 +1569,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "7cb008a3-1a39-4931-be5e-f6aba67b5c62" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "aee45fe4-ec1f-4590-b940-960018857436" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090606Z:aee45fe4-ec1f-4590-b940-960018857436" ], + "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, 30 Jul 2020 09:06:06 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Running\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T08:58:04.1752518Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14+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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14", + "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": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153", "154", "155" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], + "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" ], @@ -1609,56 +1609,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "8abcaedb-11e6-46a6-a6e4-a9105500feea" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "375d2fcb-6922-46ea-afa1-b936d9d6cea3" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090636Z:375d2fcb-6922-46ea-afa1-b936d9d6cea3" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:06:36 GMT" ] - }, - "ContentHeaders": { - "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/e49d42a8-f710-402f-b7f2-119da4757add\",\"name\":\"e49d42a8-f710-402f-b7f2-119da4757add\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T08:58:01.5343571Z\",\"endTime\":\"2020-07-30T09:06:06.5815095Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b8fde0be-6714-44d0-82e3-db1432b7c387\",\"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/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14\u0026operationResultResponseType=Location+20": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e49d42a8-f710-402f-b7f2-119da4757add?api-version=2020-06-14\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153", "154", "155", "156" ], - "x-ms-client-request-id": [ "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747", "06830cac-153d-4d8e-92a9-7a91c1b10747" ], - "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" ], - "x-ms-request-id": [ "76e8b68a-a1b7-4def-a596-5c0d810e2991" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "00c3ff91-815e-4c13-b0ba-4d6c022caaea" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090637Z:00c3ff91-815e-4c13-b0ba-4d6c022caaea" ], + "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, 30 Jul 2020 09:06:36 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 b14032f34bff..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/attachedDatabaseConfigurations?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/attachedDatabaseConfigurations?api-version=2020-06-14", + "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": [ "157" ], - "x-ms-client-request-id": [ "e8bad009-d0a6-4ccc-ab08-0439b1f47a33" ], + "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": [ "e1c11d3c-2cff-4c24-a196-d77777c05fb1" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "bf377b19-ebde-4cca-afdb-bf3db55620c2" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090639Z:bf377b19-ebde-4cca-afdb-bf3db55620c2" ], + "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, 30 Jul 2020 09:06:38 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfkgb956\",\"name\":\"testfclusterkgb956/testdbconfkgb956\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabase5arkid\",\"attachedDatabaseNames\":[\"testdatabase5arkid\"],\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfkgb956?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfkgb956?api-version=2020-06-14", + "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": [ "158" ], - "x-ms-client-request-id": [ "8392a932-6a0f-4a16-9512-6bb33c13f028" ], + "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": [ "659f964c-63ec-4b20-b755-3d20e1b23aca" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "ead8400d-b7e0-4c4e-b63d-32565b4c2b67" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090639Z:ead8400d-b7e0-4c4e-b63d-32565b4c2b67" ], + "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, 30 Jul 2020 09:06:38 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfkgb956\",\"name\":\"testfclusterkgb956/testdbconfkgb956\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabase5arkid\",\"attachedDatabaseNames\":[\"testdatabase5arkid\"],\"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 e84721e405ca..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14", + "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": [ "159" ], - "x-ms-client-request-id": [ "4ff7f649-5ea5-4d65-808e-494beaf83104" ], + "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": [ "f711f3a2-f378-4300-9dfa-162bea865cf8" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "753fd4fb-e511-4230-bade-2530e5b1fb59" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090640Z:753fd4fb-e511-4230-bade-2530e5b1fb59" ], + "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, 30 Jul 2020 09:06:39 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "858" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/clusters?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/clusters?api-version=2020-06-14", + "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": [ "160" ], - "x-ms-client-request-id": [ "103b52a4-b59b-4815-b3cc-3250a7d1abc4" ], + "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": [ "3b35bcd8-eab1-4143-a123-278046e891a8" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "77ebb739-2152-4c7b-a22a-f9d0d55146ca" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090640Z:77ebb739-2152-4c7b-a22a-f9d0d55146ca" ], + "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, 30 Jul 2020 09:06:39 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2464" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956\",\"name\":\"testfclusterkgb956\",\"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://testfclusterkgb956.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testfclusterkgb956.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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z\",\"name\":\"testcluster0whu7z\",\"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://testcluster0whu7z.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster0whu7z.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"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 997768a2d89b..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/listFollowerDatabases?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/listFollowerDatabases?api-version=2020-06-14", + "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": [ "161" ], - "x-ms-client-request-id": [ "85fc2c70-cb03-4217-96e4-47d54261aa04" ], + "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": [ "79a81a3f-9b70-48b0-b379-d0a359b7411f" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "b92b12c3-2aaa-4256-90f3-50ee165d0bcb" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090641Z:b92b12c3-2aaa-4256-90f3-50ee165d0bcb" ], + "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, 30 Jul 2020 09:06:40 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956\",\"attachedDatabaseConfigurationName\":\"testdbconfkgb956\",\"databaseName\":\"testdatabase5arkid\"}]}" + "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 519e27c4bf42..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/listLanguageExtensions?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/listLanguageExtensions?api-version=2020-06-14", + "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": [ "162" ], - "x-ms-client-request-id": [ "37ff43d8-4519-48ab-9619-99c6604ef400" ], + "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": [ "f7238654-e1cd-4be7-8d14-cf19f4b06c2c" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "103e9f3b-2422-46d0-a665-3fbfd9a087b9" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090642Z:103e9f3b-2422-46d0-a665-3fbfd9a087b9" ], + "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, 30 Jul 2020 09:06:41 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 d3ecf820cf3d..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/principalAssignments?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/principalAssignments?api-version=2020-06-14", + "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": [ "163" ], - "x-ms-client-request-id": [ "56dfe5b6-be1d-47f5-930a-66cb148b711f" ], + "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": [ "55f05f42-00ab-4a39-b53a-fd3cf66484f6" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "06d1f515-6a7d-4a94-8a14-d2bb5aa9f393" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090645Z:06d1f515-6a7d-4a94-8a14-d2bb5aa9f393" ], + "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, 30 Jul 2020 09:06:44 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/KustoClientsScenarioTest\",\"name\":\"testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/KustoClientsScenarioTest?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/KustoClientsScenarioTest?api-version=2020-06-14", + "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": [ "164" ], - "x-ms-client-request-id": [ "0dfe042b-a827-49ab-9539-ba87c9f66687" ], + "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": [ "fa59bcf2-d170-40b3-87d5-994c8b4f6eb0" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "5aa7b4e0-4adb-47e1-91a1-52c9eec2def8" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090645Z:5aa7b4e0-4adb-47e1-91a1-52c9eec2def8" ], + "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, 30 Jul 2020 09:06:44 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/KustoClientsScenarioTest\",\"name\":\"testcluster5arkid/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 7881f13af447..741cb7e1b872 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-06-14+1": { + "Get-AzKustoClusterSku+[NoContext]+[NoScenario]+$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-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "165" ], - "x-ms-client-request-id": [ "d56bc071-80df-4669-9f93-e2607f35ccc3" ], + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "3a710550-19fd-47e6-b105-8d4a3e30568b" ], "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": [ "11999" ], - "x-ms-request-id": [ "b4ca8019-1c92-4771-9d9a-d6f94c88bc4e" ], - "x-ms-correlation-request-id": [ "b4ca8019-1c92-4771-9d9a-d6f94c88bc4e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090646Z:b4ca8019-1c92-4771-9d9a-d6f94c88bc4e" ], + "x-ms-request-id": [ "9b9407be-2a68-4609-87aa-3742df2ba307" ], + "x-ms-correlation-request-id": [ "9b9407be-2a68-4609-87aa-3742df2ba307" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T071956Z:9b9407be-2a68-4609-87aa-3742df2ba307" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:06:45 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 03 Aug 2020 07:19:55 GMT" ] }, "ContentHeaders": { + "Content-Length": [ "62986" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ], - "Content-Length": [ "62986" ] + "Expires": [ "-1" ] }, "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/skus?api-version=2020-06-14+1": { + "Get-AzKustoClusterSku+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/skus?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/skus?api-version=2020-06-14", + "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": [ "166" ], - "x-ms-client-request-id": [ "0911ffce-8587-4ce7-b0a2-4628c7670348" ], + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "d01e2183-f756-44ca-82d7-0029d519fb5c" ], "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": [ "11998" ], - "x-ms-request-id": [ "4a8f4b52-98ec-4655-a93e-6c81b2ce4cf5" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "98bdd433-6c36-4606-a0e8-b7df8237e7b8" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090646Z:98bdd433-6c36-4606-a0e8-b7df8237e7b8" ], + "x-ms-request-id": [ "699e0782-48cf-49e8-a568-f9c5c511ae09" ], + "x-ms-correlation-request-id": [ "5c922884-30ad-4c8d-bd8b-5fc39d287156" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T071958Z:5c922884-30ad-4c8d-bd8b-5fc39d287156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:06:45 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 03 Aug 2020 07:19:58 GMT" ], + "Set-Cookie": [ "ARRAffinity=67658d3126ddf9428e4e2f36f09e574385ff742ffab2b8dcad942ecc1f8fdb67;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 7e5df3fb2167..f09a90d978dc 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/dataConnections?api-version=2020-06-14+1": { + "Get-AzKustoDataConnection+[NoContext]+[NoScenario]+$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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/dataConnections?api-version=2020-06-14", + "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": [ "172" ], - "x-ms-client-request-id": [ "278e9790-ea52-4032-9bf2-97ea2c7c75e6" ], + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "e81e33dd-fa89-48b5-8d88-63d8e3f8199c" ], "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": [ "21aa3b02-fbe9-4a66-8eba-5d986593056f" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "3bfb9384-721e-4214-b781-cee28bdeb1a0" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090651Z:3bfb9384-721e-4214-b781-cee28bdeb1a0" ], + "x-ms-request-id": [ "066381da-a518-4fd9-9510-b60445daa0d4" ], + "x-ms-correlation-request-id": [ "d4912a73-8fcc-48da-b912-a6dd2cb3f390" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T072717Z:d4912a73-8fcc-48da-b912-a6dd2cb3f390" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:06:50 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 03 Aug 2020 07:27:17 GMT" ], + "Set-Cookie": [ "ARRAffinity=7af73990d8c71bc2771b421e489b49b46347d66c21cd7ad1e741334df7cd91e4;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { - "Content-Length": [ "12" ], + "Content-Length": [ "2480" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[]}" + "Content": "{\"value\":[{\"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\"}},{\"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\"}}]}" } }, - "Get-AzKustoDataConnection+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14+1": { + "Get-AzKustoDataConnection+[NoContext]+[NoScenario]+$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+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14", + "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": [ "173" ], - "x-ms-client-request-id": [ "205e91e0-c862-4970-9ecb-f2d48bfea989" ], + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "6ff3a51f-590a-4467-9888-6c5831f75a08" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -58,26 +58,28 @@ } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e2e482c8-ba43-4834-ad3b-7c9a5dad276f" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], + "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-correlation-request-id": [ "075f41aa-8a7e-4a66-b951-dc93938e8540" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090651Z:075f41aa-8a7e-4a66-b951-dc93938e8540" ], + "x-ms-request-id": [ "77c6d0b2-2d92-43d4-adf5-c323a59e9ab5" ], + "x-ms-correlation-request-id": [ "a269e389-9870-4b55-8c97-e36c4ca1d7b1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T072718Z:a269e389-9870-4b55-8c97-e36c4ca1d7b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:06:50 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 03 Aug 2020 07:27:18 GMT" ], + "ETag": [ "\"\"" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { - "Content-Length": [ "300" ], + "Content-Length": [ "776" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid\u0027 is not found.\"}}" + "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 015438e4c0f5..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "167" ], - "x-ms-client-request-id": [ "91aa6460-365f-4d86-863d-d31f73e061d9" ], + "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": [ "98ffac6f-7cde-4647-8a98-bca7fc53faea" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "8a4fb15e-d730-4d7c-a536-48566522447c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090647Z:8a4fb15e-d730-4d7c-a536-48566522447c" ], + "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, 30 Jul 2020 09:06:46 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "0d71d340-f04a-419c-a349-cf8757fd342d" ], + "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": [ "9e2c90e5-ec41-469b-ae68-46da7d635d30" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "3cb7aab6-1b61-430a-ad8f-fd02f98d2ba8" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090648Z:3cb7aab6-1b61-430a-ad8f-fd02f98d2ba8" ], + "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, 30 Jul 2020 09:06:47 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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 c079dd32ef15..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/listPrincipals?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/listPrincipals?api-version=2020-06-14", + "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": [ "169" ], - "x-ms-client-request-id": [ "0be57606-0e0b-479e-9b34-6f13e5705dc3" ], + "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,21 +23,21 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], - "x-ms-request-id": [ "6c8a1ea9-b518-49b8-a552-2760de91d150" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "059c5cbb-c92b-4c65-8157-e5a485f1c1c4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090649Z:059c5cbb-c92b-4c65-8157-e5a485f1c1c4" ], + "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, 30 Jul 2020 09:06:48 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "464" ], + "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\":\"Assaf Taubenfeld\",\"role\":\"Admin\",\"type\":\"User\",\"fqn\":\"aaduser=53d8fc23-618e-49fa-ae3f-ae65cc60aa37;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"astauben@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\"},{\"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\"}]}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Get-AzKustoDatabasePrincipalAssignment.Recording.json b/src/Kusto/test/Get-AzKustoDatabasePrincipalAssignment.Recording.json index 3d29750e3c24..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/principalAssignments?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/principalAssignments?api-version=2020-06-14", + "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": [ "170" ], - "x-ms-client-request-id": [ "50bc3598-2a74-4a17-84ab-4fc6d23a03a1" ], + "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": [ "13e0e029-9a0a-40a3-89a3-a94e4c9f18e9" ], + "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": [ "dd453a3f-4e75-4120-bc6d-9b9b95c38c7d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090649Z:dd453a3f-4e75-4120-bc6d-9b9b95c38c7d" ], + "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, 30 Jul 2020 09:06:48 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1265" ], + "Content-Length": [ "1260" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/KustoClientsScenarioTest\",\"name\":\"testcluster5arkid/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/be402560-eb61-4a86-b130-d9af768b8d3f\",\"name\":\"testcluster5arkid/testdatabase5arkid/be402560-eb61-4a86-b130-d9af768b8d3f\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"astauben@microsoft.com\",\"role\":\"Admin\",\"principalType\":\"User\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"Assaf Taubenfeld\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/KustoClientsScenarioTest?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/KustoClientsScenarioTest?api-version=2020-06-14", + "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": [ "171" ], - "x-ms-client-request-id": [ "88c6d339-8b7e-413b-9cd5-c9d043975c26" ], + "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": [ "72877e85-2e2e-4fbf-8cd2-d4ea356b6dfe" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "13ce5ec1-e2a7-45df-9ee2-046ca63fc8dc" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090650Z:13ce5ec1-e2a7-45df-9ee2-046ca63fc8dc" ], + "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, 30 Jul 2020 09:06:49 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/KustoClientsScenarioTest\",\"name\":\"testcluster5arkid/testdatabase5arkid/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 d3ea506d1f4a..e8d5e49a1c37 100644 --- a/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Recording.json +++ b/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Recording.json @@ -1,14 +1,14 @@ { - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventHub+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/dataConnectionValidation?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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 \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubns5arkid/eventhubs/eventhub5arkid\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnection5arkidani9hf\"\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": { @@ -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/b7b054b2-8b36-423c-8b15-ea110f22cc96?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "17b0346a-fd2a-4d0a-963f-e89cbf1cf9ef" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b7b054b2-8b36-423c-8b15-ea110f22cc96?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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/4c87a207-7ce9-49e2-8431-689b3ad62c11?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "c923f330-f000-498e-815c-eb8669a4285d" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4c87a207-7ce9-49e2-8431-689b3ad62c11?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": [ "1194" ], - "x-ms-correlation-request-id": [ "d541308d-6cf1-4db6-8702-563788fd8531" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090652Z:d541308d-6cf1-4db6-8702-563788fd8531" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "bab1facf-86ab-4be7-8454-cb6d674e337a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232914Z:bab1facf-86ab-4be7-8454-cb6d674e337a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:06:51 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:29:13 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -35,14 +35,14 @@ "Content": null } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b7b054b2-8b36-423c-8b15-ea110f22cc96?api-version=2020-06-14+2": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4c87a207-7ce9-49e2-8431-689b3ad62c11?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/b7b054b2-8b36-423c-8b15-ea110f22cc96?api-version=2020-06-14", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4c87a207-7ce9-49e2-8431-689b3ad62c11?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "174", "175" ], - "x-ms-client-request-id": [ "9a52768d-955a-41d7-b95f-2492c6bc7fe6", "9a52768d-955a-41d7-b95f-2492c6bc7fe6" ], + "x-ms-unique-id": [ "178", "179" ], + "x-ms-client-request-id": [ "e0e3a404-8313-4141-9410-e5d7f5a32fc7", "e0e3a404-8313-4141-9410-e5d7f5a32fc7" ], "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -58,32 +58,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "b273da42-ede1-4189-ba7a-7827b9a6eeaf" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-request-id": [ "03f9ae73-a68c-4e4b-b886-9c583e2afa2a" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "96229dde-1374-4c76-9218-74a57204597d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090723Z:96229dde-1374-4c76-9218-74a57204597d" ], + "x-ms-correlation-request-id": [ "18310821-98ec-4221-9f84-216de097eea9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232944Z:18310821-98ec-4221-9f84-216de097eea9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:07:22 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:29:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "510" ], + "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/b7b054b2-8b36-423c-8b15-ea110f22cc96\",\"name\":\"b7b054b2-8b36-423c-8b15-ea110f22cc96\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:06:52.7631978Z\",\"endTime\":\"2020-07-30T09:06:56.4355088Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"6d4865aa-e2d5-4dad-917c-1096b27a9f91\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4c87a207-7ce9-49e2-8431-689b3ad62c11\",\"name\":\"4c87a207-7ce9-49e2-8431-689b3ad62c11\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:29:14.4630502Z\",\"endTime\":\"2020-08-02T23:29:14.5411837Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"c91f9a01-6279-4e27-9a89-b6ae11fa3e12\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b7b054b2-8b36-423c-8b15-ea110f22cc96?api-version=2020-06-14\u0026operationResultResponseType=Location+3": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4c87a207-7ce9-49e2-8431-689b3ad62c11?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/b7b054b2-8b36-423c-8b15-ea110f22cc96?api-version=2020-06-14\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4c87a207-7ce9-49e2-8431-689b3ad62c11?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "174", "175", "176" ], - "x-ms-client-request-id": [ "9a52768d-955a-41d7-b95f-2492c6bc7fe6", "9a52768d-955a-41d7-b95f-2492c6bc7fe6", "9a52768d-955a-41d7-b95f-2492c6bc7fe6" ], + "x-ms-unique-id": [ "178", "179", "180" ], + "x-ms-client-request-id": [ "e0e3a404-8313-4141-9410-e5d7f5a32fc7", "e0e3a404-8313-4141-9410-e5d7f5a32fc7", "e0e3a404-8313-4141-9410-e5d7f5a32fc7" ], "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" ], @@ -98,33 +98,76 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2d2ee4ee-2d7f-4aeb-a3b4-24127bd003b0" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "x-ms-request-id": [ "ecc5daca-d89f-4d82-a621-030d3feee3ba" ], + "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": [ "bac5d50f-742a-4099-b830-16fdb6e3429d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090723Z:bac5d50f-742a-4099-b830-16fdb6e3429d" ], + "x-ms-correlation-request-id": [ "79e97ae3-85fe-4ed5-ad18-fc20883ec9dd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233015Z:79e97ae3-85fe-4ed5-ad18-fc20883ec9dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:07:23 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:30:14 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "448" ], + "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/4c87a207-7ce9-49e2-8431-689b3ad62c11\",\"name\":\"4c87a207-7ce9-49e2-8431-689b3ad62c11\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:29:14.4630502Z\",\"endTime\":\"2020-08-02T23:29:57.7590791Z\",\"percentComplete\":1.0,\"properties\":{\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/dataConnectionValidation?api-version=2020-06-14+1": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4c87a207-7ce9-49e2-8431-689b3ad62c11?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/4c87a207-7ce9-49e2-8431-689b3ad62c11?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "178", "179", "180", "181" ], + "x-ms-client-request-id": [ "e0e3a404-8313-4141-9410-e5d7f5a32fc7", "e0e3a404-8313-4141-9410-e5d7f5a32fc7", "e0e3a404-8313-4141-9410-e5d7f5a32fc7", "e0e3a404-8313-4141-9410-e5d7f5a32fc7" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "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", "Invoke-AzKustoDataConnectionValidation_Data" ], + "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": [ "297" ], + "x-ms-request-id": [ "d1229055-02d9-4843-b326-77dc7abf9319" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "bd3e444e-3a72-4ba8-a8b3-487f08e133f6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233015Z:bd3e444e-3a72-4ba8-a8b3-487f08e133f6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 02 Aug 2020 23:30:14 GMT" ] + }, + "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\"}]}" + } + }, + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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 \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubnsgridkgb956/eventhubs/eventgridkgb956\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Storage/storageAccounts/storage5arkid\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnection5arkidv8aetj\"\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": { @@ -132,17 +175,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/f91a7d30-f348-4178-9c39-fa1ce956badb?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "0767e000-d474-4957-8e78-60107ad8aaa0" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f91a7d30-f348-4178-9c39-fa1ce956badb?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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/9917f829-b644-4645-abb5-ee2ce1b8d468?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "e6567f2a-3656-40d6-8cb9-742b0f784c3a" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9917f829-b644-4645-abb5-ee2ce1b8d468?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": [ "8eece88e-2589-4972-856a-e25c1f5cf8b6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090723Z:8eece88e-2589-4972-856a-e25c1f5cf8b6" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "b8c86f88-e990-46ed-b2e1-fbda28662d2c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233015Z:b8c86f88-e990-46ed-b2e1-fbda28662d2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:07:23 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:30:15 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -151,14 +194,14 @@ "Content": null } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f91a7d30-f348-4178-9c39-fa1ce956badb?api-version=2020-06-14+2": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9917f829-b644-4645-abb5-ee2ce1b8d468?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/f91a7d30-f348-4178-9c39-fa1ce956badb?api-version=2020-06-14", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/9917f829-b644-4645-abb5-ee2ce1b8d468?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "177", "178" ], - "x-ms-client-request-id": [ "5bd9b499-1ca0-421f-916b-32e79a6186a3", "5bd9b499-1ca0-421f-916b-32e79a6186a3" ], + "x-ms-unique-id": [ "182", "183" ], + "x-ms-client-request-id": [ "d30527b1-3b5f-45cc-9741-e4d1c0bc5033", "d30527b1-3b5f-45cc-9741-e4d1c0bc5033" ], "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -174,32 +217,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "3c363e23-a8d3-4289-b101-336b8c4fda86" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], + "x-ms-request-id": [ "a0c37f90-53a9-426d-9a5f-3f84e3fc2816" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5a9e705a-61c8-4727-adcf-f851f24e9c6b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090754Z:5a9e705a-61c8-4727-adcf-f851f24e9c6b" ], + "x-ms-correlation-request-id": [ "de38d8ed-a78c-40f9-accc-10e5d131f248" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233046Z:de38d8ed-a78c-40f9-accc-10e5d131f248" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:07:53 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:30:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "518" ], + "Content-Length": [ "508" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/f91a7d30-f348-4178-9c39-fa1ce956badb\",\"name\":\"f91a7d30-f348-4178-9c39-fa1ce956badb\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:07:23.8659517Z\",\"endTime\":\"2020-07-30T09:07:26.9130567Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventGridIngestionSourceAdd\",\"RootActivityId\":\"a67cd8a3-e34b-4d5a-9943-93944e33e550\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/9917f829-b644-4645-abb5-ee2ce1b8d468\",\"name\":\"9917f829-b644-4645-abb5-ee2ce1b8d468\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:30:15.7518198Z\",\"endTime\":\"2020-08-02T23:30:20.127259Z\",\"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/f91a7d30-f348-4178-9c39-fa1ce956badb?api-version=2020-06-14\u0026operationResultResponseType=Location+3": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9917f829-b644-4645-abb5-ee2ce1b8d468?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/f91a7d30-f348-4178-9c39-fa1ce956badb?api-version=2020-06-14\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/9917f829-b644-4645-abb5-ee2ce1b8d468?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "177", "178", "179" ], - "x-ms-client-request-id": [ "5bd9b499-1ca0-421f-916b-32e79a6186a3", "5bd9b499-1ca0-421f-916b-32e79a6186a3", "5bd9b499-1ca0-421f-916b-32e79a6186a3" ], + "x-ms-unique-id": [ "182", "183", "184" ], + "x-ms-client-request-id": [ "d30527b1-3b5f-45cc-9741-e4d1c0bc5033", "d30527b1-3b5f-45cc-9741-e4d1c0bc5033", "d30527b1-3b5f-45cc-9741-e4d1c0bc5033" ], "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" ], @@ -214,33 +257,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e3439020-e853-4d9a-a869-6e8bef2dc7a0" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], + "x-ms-request-id": [ "4ec40357-fcfa-4fad-b935-d8138c793af4" ], + "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": [ "d4fcbf90-1cf3-44e2-a592-f19b50c3031d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090754Z:d4fcbf90-1cf3-44e2-a592-f19b50c3031d" ], + "x-ms-correlation-request-id": [ "196af223-c3b7-415e-a7db-f741d9402b97" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233046Z:196af223-c3b7-415e-a7db-f741d9402b97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:07:53 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:30:46 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "164" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/dataConnectionValidation?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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 \"dataFormat\": \"JSON\",\r\n \"iotHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Devices/IotHubs/iothub5arkid\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"sharedAccessPolicyName\": \"registryRead\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnection5arkidqynp9a\"\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": { @@ -248,17 +293,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/49897543-1e1b-49f8-8560-c20afdcb0d2b?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "f16f1ca6-be9d-4ec6-a163-a2c662728773" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/49897543-1e1b-49f8-8560-c20afdcb0d2b?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "43ac7b61-1515-4863-8651-36164403d372" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?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": [ "1192" ], - "x-ms-correlation-request-id": [ "50cba7c2-bcc2-4561-aebc-fcf16d4920e0" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090754Z:50cba7c2-bcc2-4561-aebc-fcf16d4920e0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-correlation-request-id": [ "089ef32f-522a-40f0-8055-68a0be0b91c2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233046Z:089ef32f-522a-40f0-8055-68a0be0b91c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:07:54 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:30:46 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -267,14 +312,14 @@ "Content": null } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/49897543-1e1b-49f8-8560-c20afdcb0d2b?api-version=2020-06-14+2": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?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/49897543-1e1b-49f8-8560-c20afdcb0d2b?api-version=2020-06-14", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "180", "181" ], - "x-ms-client-request-id": [ "debbd53c-b307-4057-b8ef-41cd0aae54d0", "debbd53c-b307-4057-b8ef-41cd0aae54d0" ], + "x-ms-unique-id": [ "185", "186" ], + "x-ms-client-request-id": [ "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d" ], "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -290,32 +335,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "fb70daf1-9d06-429a-be37-5fb7257feb11" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "294" ], + "x-ms-request-id": [ "7799798c-15ed-4d31-83dd-c9c3fdf2a4d8" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "293fcee4-1f3b-4094-b526-e55054c6a972" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090826Z:293fcee4-1f3b-4094-b526-e55054c6a972" ], + "x-ms-correlation-request-id": [ "b96d539e-80b6-4cd5-9e34-0d8293997d49" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233117Z:b96d539e-80b6-4cd5-9e34-0d8293997d49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:08:25 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:31:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "561" ], + "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/49897543-1e1b-49f8-8560-c20afdcb0d2b\",\"name\":\"49897543-1e1b-49f8-8560-c20afdcb0d2b\",\"status\":\"Failed\",\"startTime\":\"2020-07-30T09:07:54.8060326Z\",\"endTime\":\"2020-07-30T09:07:56.3688852Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"1d2484c9-345f-4509-a477-0f29298cec8d\",\"provisioningState\":\"Failed\",\"OperationState\":\"Failed\"},\"error\":{\"code\":\"Failed\",\"message\":\"Internal Server Error\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8\",\"name\":\"fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:30:46.7856308Z\",\"endTime\":\"2020-08-02T23:30:46.8481984Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"1810c1bd-b530-4b62-b653-c3d01f8f9a9e\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/49897543-1e1b-49f8-8560-c20afdcb0d2b?api-version=2020-06-14\u0026operationResultResponseType=Location+3": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?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/49897543-1e1b-49f8-8560-c20afdcb0d2b?api-version=2020-06-14\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "180", "181", "182" ], - "x-ms-client-request-id": [ "debbd53c-b307-4057-b8ef-41cd0aae54d0", "debbd53c-b307-4057-b8ef-41cd0aae54d0", "debbd53c-b307-4057-b8ef-41cd0aae54d0" ], + "x-ms-unique-id": [ "185", "186", "187" ], + "x-ms-client-request-id": [ "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d" ], "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" ], @@ -326,37 +371,119 @@ } }, "Response": { - "StatusCode": 500, + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "293" ], + "x-ms-request-id": [ "ec0c2162-806b-4b6d-a052-442608f93b6d" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "ad431339-b665-43ed-93ff-d40e3d059c85" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233147Z:ad431339-b665-43ed-93ff-d40e3d059c85" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 02 Aug 2020 23:31:46 GMT" ] + }, + "ContentHeaders": { + "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/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8\",\"name\":\"fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:30:46.7856308Z\",\"endTime\":\"2020-08-02T23:30:46.8481984Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"1810c1bd-b530-4b62-b653-c3d01f8f9a9e\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?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/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "185", "186", "187", "188" ], + "x-ms-client-request-id": [ "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "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", "Invoke-AzKustoDataConnectionValidation_Data" ], + "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" ], - "x-ms-request-id": [ "0f22b382-df1f-476c-a4f2-427a9e105dc3" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "292" ], + "x-ms-request-id": [ "d0865814-d4d1-4595-b215-ddde1d3a13d7" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "a548ddca-0b85-45cb-9ba2-cfcbbedc8bee" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233217Z:a548ddca-0b85-45cb-9ba2-cfcbbedc8bee" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 02 Aug 2020 23:32:17 GMT" ] + }, + "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/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8\",\"name\":\"fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:30:46.7856308Z\",\"endTime\":\"2020-08-02T23:32:01.7506019Z\",\"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/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?api-version=2020-06-14\u0026operationResultResponseType=Location+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "185", "186", "187", "188", "189" ], + "x-ms-client-request-id": [ "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "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", "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "291" ], + "x-ms-request-id": [ "45b76d02-6ade-44d8-a883-0701b5886c91" ], "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-failure-cause": [ "service" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-correlation-request-id": [ "6d4fcc4c-7039-48cf-afed-4e066382170d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090827Z:6d4fcc4c-7039-48cf-afed-4e066382170d" ], + "x-ms-correlation-request-id": [ "3365a510-63db-488f-a8bf-68b64ac750d7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233217Z:3365a510-63db-488f-a8bf-68b64ac750d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:08:26 GMT" ], - "Connection": [ "close" ] + "Date": [ "Sun, 02 Aug 2020 23:32:17 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "103" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "183" ], - "x-ms-client-request-id": [ "a064fb2e-3759-4348-bb3f-d93b96aca1c2" ], + "x-ms-unique-id": [ "190" ], + "x-ms-client-request-id": [ "fe14c405-4e83-4fa9-a28c-b3c7faa19715" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -374,33 +501,33 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "a381c68c-4bc0-4219-a302-5fd0bf02ed9b" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-request-id": [ "5abce4c1-b79c-4c54-bac9-ae3f972ae426" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "51507993-2d87-4d0d-bee7-8fcc4815b223" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090828Z:51507993-2d87-4d0d-bee7-8fcc4815b223" ], + "x-ms-correlation-request-id": [ "42a6e0d5-935d-42d4-8790-d9593b1172d3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233218Z:42a6e0d5-935d-42d4-8790-d9593b1172d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:08:27 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:32:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/dataConnectionValidation?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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 \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubns5arkid/eventhubs/eventhub5arkid\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnection5arkidani9hf\"\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": { @@ -408,17 +535,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/e2191075-1d4a-424c-a864-1b41ca88afa9?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "1393ae58-64b4-4015-9271-850f6880ae35" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e2191075-1d4a-424c-a864-1b41ca88afa9?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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/5062ce84-e2da-4687-90de-158b9db36185?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "cc5416e3-7309-4e04-9fbc-ce0e9ebb5bdc" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5062ce84-e2da-4687-90de-158b9db36185?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": [ "5325a710-86d3-401a-b6e2-ddcd178f954d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090828Z:5325a710-86d3-401a-b6e2-ddcd178f954d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-correlation-request-id": [ "4f08ec86-ac58-486b-a81c-2bd67c10c359" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233218Z:4f08ec86-ac58-486b-a81c-2bd67c10c359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:08:27 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:32:18 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -427,14 +554,14 @@ "Content": null } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e2191075-1d4a-424c-a864-1b41ca88afa9?api-version=2020-06-14+3": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5062ce84-e2da-4687-90de-158b9db36185?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/e2191075-1d4a-424c-a864-1b41ca88afa9?api-version=2020-06-14", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5062ce84-e2da-4687-90de-158b9db36185?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "184", "185" ], - "x-ms-client-request-id": [ "c739b762-39f3-4c1a-a728-03b6d9f0efb0", "c739b762-39f3-4c1a-a728-03b6d9f0efb0" ], + "x-ms-unique-id": [ "191", "192" ], + "x-ms-client-request-id": [ "4661e130-8fec-421e-8161-abb70f74244f", "4661e130-8fec-421e-8161-abb70f74244f" ], "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -450,32 +577,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "2e9edaf8-938e-4af2-b368-e48e108c7bdc" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], + "x-ms-request-id": [ "9e33865c-1cff-4753-ad99-5dc3c7375adb" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "4dc3ecff-27f0-49c1-956d-93d6706ab48e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090858Z:4dc3ecff-27f0-49c1-956d-93d6706ab48e" ], + "x-ms-correlation-request-id": [ "fd4383c3-2503-47da-9c57-cf87c798dd39" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233248Z:fd4383c3-2503-47da-9c57-cf87c798dd39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:08:58 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:32:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "510" ], + "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/e2191075-1d4a-424c-a864-1b41ca88afa9\",\"name\":\"e2191075-1d4a-424c-a864-1b41ca88afa9\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:08:28.6254342Z\",\"endTime\":\"2020-07-30T09:08:31.9705321Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"570a68b0-8ed0-458f-ad3e-91534db74d86\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5062ce84-e2da-4687-90de-158b9db36185\",\"name\":\"5062ce84-e2da-4687-90de-158b9db36185\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:32:18.6656822Z\",\"endTime\":\"2020-08-02T23:32:22.0949071Z\",\"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/e2191075-1d4a-424c-a864-1b41ca88afa9?api-version=2020-06-14\u0026operationResultResponseType=Location+4": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5062ce84-e2da-4687-90de-158b9db36185?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/e2191075-1d4a-424c-a864-1b41ca88afa9?api-version=2020-06-14\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5062ce84-e2da-4687-90de-158b9db36185?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "184", "185", "186" ], - "x-ms-client-request-id": [ "c739b762-39f3-4c1a-a728-03b6d9f0efb0", "c739b762-39f3-4c1a-a728-03b6d9f0efb0", "c739b762-39f3-4c1a-a728-03b6d9f0efb0" ], + "x-ms-unique-id": [ "191", "192", "193" ], + "x-ms-client-request-id": [ "4661e130-8fec-421e-8161-abb70f74244f", "4661e130-8fec-421e-8161-abb70f74244f", "4661e130-8fec-421e-8161-abb70f74244f" ], "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" ], @@ -490,31 +617,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "137904f7-077b-46b4-8ac7-3ca03415e732" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "1ce493fe-7559-487d-aa73-9f44aa8f25a1" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-correlation-request-id": [ "7a4180eb-d4c3-4dbf-b361-87e4678912bc" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090859Z:7a4180eb-d4c3-4dbf-b361-87e4678912bc" ], + "x-ms-correlation-request-id": [ "90de9c84-79cf-4bd9-ba36-613087776886" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233249Z:90de9c84-79cf-4bd9-ba36-613087776886" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:08:58 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:32:48 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "103" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "187" ], - "x-ms-client-request-id": [ "d543a96b-fe5f-43f0-8a15-e19772e0ffe4" ], + "x-ms-unique-id": [ "194" ], + "x-ms-client-request-id": [ "d2c979dc-a80a-46b4-b4fd-c6a3180e0087" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -532,33 +661,33 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "e54d1164-e0ff-459d-9df0-c2d51ae512e4" ], + "x-ms-request-id": [ "5697321a-818b-460b-927f-0b861ad64688" ], "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "eca5221f-ecc8-47b2-b4fc-b0523d07da03" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090859Z:eca5221f-ecc8-47b2-b4fc-b0523d07da03" ], + "x-ms-correlation-request-id": [ "92f26fa2-4a8d-407c-8ee3-1e1e8dbc28f2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233249Z:92f26fa2-4a8d-407c-8ee3-1e1e8dbc28f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:08:59 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:32:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/dataConnectionValidation?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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 \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubnsgridkgb956/eventhubs/eventgridkgb956\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Storage/storageAccounts/storage5arkid\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnection5arkidv8aetj\"\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": { @@ -566,17 +695,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/7da709af-833c-44fb-98e8-f128dbcfd403?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "520687cd-c27f-4c0d-931d-46bed27bac6e" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7da709af-833c-44fb-98e8-f128dbcfd403?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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/4855b9a6-9674-4e91-b8e3-0b81852436f0?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "fdec28c5-c35f-4332-8b41-bc2fd9d0b932" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4855b9a6-9674-4e91-b8e3-0b81852436f0?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": [ "765e1f8f-7c15-4591-82e9-fe059333e7b6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090900Z:765e1f8f-7c15-4591-82e9-fe059333e7b6" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "x-ms-correlation-request-id": [ "4dbf57bb-2d2e-4992-a917-8681da88b0d0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233250Z:4dbf57bb-2d2e-4992-a917-8681da88b0d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:08:59 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:32:49 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -585,14 +714,14 @@ "Content": null } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7da709af-833c-44fb-98e8-f128dbcfd403?api-version=2020-06-14+3": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4855b9a6-9674-4e91-b8e3-0b81852436f0?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/7da709af-833c-44fb-98e8-f128dbcfd403?api-version=2020-06-14", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4855b9a6-9674-4e91-b8e3-0b81852436f0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "188", "189" ], - "x-ms-client-request-id": [ "eda2344a-c4f2-4ec6-8fc9-0554ecebcdae", "eda2344a-c4f2-4ec6-8fc9-0554ecebcdae" ], + "x-ms-unique-id": [ "195", "196" ], + "x-ms-client-request-id": [ "0565b910-1b19-4ae7-af1f-04bd4f915491", "0565b910-1b19-4ae7-af1f-04bd4f915491" ], "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -608,32 +737,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-request-id": [ "0ce1402a-796c-41dd-a9fc-f2ac7dbdf327" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "654ed9d0-de8a-4304-b4ae-5d75502abe73" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "bc119877-c92c-44f1-b24e-4e35c7a63ae4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090930Z:bc119877-c92c-44f1-b24e-4e35c7a63ae4" ], + "x-ms-correlation-request-id": [ "15ead235-9a87-42c8-bac2-051c307a454d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233320Z:15ead235-9a87-42c8-bac2-051c307a454d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:09:29 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:33:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "518" ], + "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/7da709af-833c-44fb-98e8-f128dbcfd403\",\"name\":\"7da709af-833c-44fb-98e8-f128dbcfd403\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:09:00.0196354Z\",\"endTime\":\"2020-07-30T09:09:03.4886524Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventGridIngestionSourceAdd\",\"RootActivityId\":\"f6ed93f4-b72b-4dcd-b7b4-99a806751260\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4855b9a6-9674-4e91-b8e3-0b81852436f0\",\"name\":\"4855b9a6-9674-4e91-b8e3-0b81852436f0\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:32:49.9296182Z\",\"endTime\":\"2020-08-02T23:32:52.7280413Z\",\"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/7da709af-833c-44fb-98e8-f128dbcfd403?api-version=2020-06-14\u0026operationResultResponseType=Location+4": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4855b9a6-9674-4e91-b8e3-0b81852436f0?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/7da709af-833c-44fb-98e8-f128dbcfd403?api-version=2020-06-14\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4855b9a6-9674-4e91-b8e3-0b81852436f0?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "188", "189", "190" ], - "x-ms-client-request-id": [ "eda2344a-c4f2-4ec6-8fc9-0554ecebcdae", "eda2344a-c4f2-4ec6-8fc9-0554ecebcdae", "eda2344a-c4f2-4ec6-8fc9-0554ecebcdae" ], + "x-ms-unique-id": [ "195", "196", "197" ], + "x-ms-client-request-id": [ "0565b910-1b19-4ae7-af1f-04bd4f915491", "0565b910-1b19-4ae7-af1f-04bd4f915491", "0565b910-1b19-4ae7-af1f-04bd4f915491" ], "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" ], @@ -648,31 +777,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3d516c6e-9bd6-4a6e-bdd4-1b74ade0b9fc" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "e44edc2f-7fee-4f72-8f6f-291812e50fc6" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], - "x-ms-correlation-request-id": [ "7c1b273e-d4b9-426c-bc5f-3ec0731398a5" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090930Z:7c1b273e-d4b9-426c-bc5f-3ec0731398a5" ], + "x-ms-correlation-request-id": [ "c2a40192-0cff-49d7-9a3f-5488dc5b5f7f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233320Z:c2a40192-0cff-49d7-9a3f-5488dc5b5f7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:09:29 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:33:20 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "164" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "191" ], - "x-ms-client-request-id": [ "69faf685-26c6-43b7-a0ca-245c71fef439" ], + "x-ms-unique-id": [ "198" ], + "x-ms-client-request-id": [ "e56ef1ed-e2fc-474f-86ff-002b688b68a6" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -690,33 +821,33 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-request-id": [ "1cfb35b7-e15c-4b3e-bd47-208cb3d0f30c" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-request-id": [ "3bc9439f-4853-453b-98f9-25f03ca5a61c" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "4fab42cf-c9d5-4818-9b25-ef6d27f4b611" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090931Z:4fab42cf-c9d5-4818-9b25-ef6d27f4b611" ], + "x-ms-correlation-request-id": [ "325ed901-7036-44ee-8c92-31c53724a0f6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233320Z:325ed901-7036-44ee-8c92-31c53724a0f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:09:30 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:33:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/dataConnectionValidation?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/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 \"dataFormat\": \"JSON\",\r\n \"iotHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Devices/IotHubs/iothub5arkid\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"sharedAccessPolicyName\": \"registryRead\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnection5arkidqynp9a\"\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": { @@ -724,17 +855,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/70b64dd6-2cfb-40e5-a95b-68f6444f0fcd?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "f4847828-241f-489d-9feb-492597a83e94" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/70b64dd6-2cfb-40e5-a95b-68f6444f0fcd?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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/6b4423e3-351f-47b3-84f7-03c8e3120ca6?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "edfbf1ff-a1a7-4955-8943-5a50c93e0751" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6b4423e3-351f-47b3-84f7-03c8e3120ca6?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": [ "1197" ], - "x-ms-correlation-request-id": [ "d0f40801-9389-4dfd-bb97-4dda4832b233" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T090931Z:d0f40801-9389-4dfd-bb97-4dda4832b233" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], + "x-ms-correlation-request-id": [ "bbbdc67f-d97b-4dd9-8be1-739cceeb1929" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233321Z:bbbdc67f-d97b-4dd9-8be1-739cceeb1929" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:09:30 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:33:21 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -743,14 +874,14 @@ "Content": null } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/70b64dd6-2cfb-40e5-a95b-68f6444f0fcd?api-version=2020-06-14+3": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6b4423e3-351f-47b3-84f7-03c8e3120ca6?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/70b64dd6-2cfb-40e5-a95b-68f6444f0fcd?api-version=2020-06-14", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6b4423e3-351f-47b3-84f7-03c8e3120ca6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "192", "193" ], - "x-ms-client-request-id": [ "99bdbb13-f044-4020-ae57-c2cd1a459034", "99bdbb13-f044-4020-ae57-c2cd1a459034" ], + "x-ms-unique-id": [ "199", "200" ], + "x-ms-client-request-id": [ "76c74690-9ed0-44bc-a5cc-ed66c4b0d8d2", "76c74690-9ed0-44bc-a5cc-ed66c4b0d8d2" ], "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -766,32 +897,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], - "x-ms-request-id": [ "d677f3de-b1a4-4981-b393-2af43f44dd4d" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "e6700d00-0f7d-40e0-872f-f136f31560fc" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "76b27038-fd52-4a83-ac25-fd7f1e14fa60" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091001Z:76b27038-fd52-4a83-ac25-fd7f1e14fa60" ], + "x-ms-correlation-request-id": [ "f5b88d15-d7af-415a-9dd1-074ea91a5b50" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233351Z:f5b88d15-d7af-415a-9dd1-074ea91a5b50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:10:01 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:33:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "561" ], + "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/70b64dd6-2cfb-40e5-a95b-68f6444f0fcd\",\"name\":\"70b64dd6-2cfb-40e5-a95b-68f6444f0fcd\",\"status\":\"Failed\",\"startTime\":\"2020-07-30T09:09:31.4513364Z\",\"endTime\":\"2020-07-30T09:09:32.9983312Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"f81b9b8e-8ec1-4dd0-b7b8-05f6481a4357\",\"provisioningState\":\"Failed\",\"OperationState\":\"Failed\"},\"error\":{\"code\":\"Failed\",\"message\":\"Internal Server Error\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6b4423e3-351f-47b3-84f7-03c8e3120ca6\",\"name\":\"6b4423e3-351f-47b3-84f7-03c8e3120ca6\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:33:21.2014131Z\",\"endTime\":\"2020-08-02T23:33:22.2171206Z\",\"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/70b64dd6-2cfb-40e5-a95b-68f6444f0fcd?api-version=2020-06-14\u0026operationResultResponseType=Location+4": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6b4423e3-351f-47b3-84f7-03c8e3120ca6?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/70b64dd6-2cfb-40e5-a95b-68f6444f0fcd?api-version=2020-06-14\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6b4423e3-351f-47b3-84f7-03c8e3120ca6?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "192", "193", "194" ], - "x-ms-client-request-id": [ "99bdbb13-f044-4020-ae57-c2cd1a459034", "99bdbb13-f044-4020-ae57-c2cd1a459034", "99bdbb13-f044-4020-ae57-c2cd1a459034" ], + "x-ms-unique-id": [ "199", "200", "201" ], + "x-ms-client-request-id": [ "76c74690-9ed0-44bc-a5cc-ed66c4b0d8d2", "76c74690-9ed0-44bc-a5cc-ed66c4b0d8d2", "76c74690-9ed0-44bc-a5cc-ed66c4b0d8d2" ], "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" ], @@ -802,27 +933,27 @@ } }, "Response": { - "StatusCode": 500, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9ec18fc8-8d0f-4185-905b-a438fcfebfc7" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "6bae8728-337a-405f-89dd-f34eacc46aa2" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-failure-cause": [ "service" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "294" ], - "x-ms-correlation-request-id": [ "c7856021-a473-424a-89f1-e25e1aed3eb5" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091002Z:c7856021-a473-424a-89f1-e25e1aed3eb5" ], + "x-ms-correlation-request-id": [ "96d3b66d-ed31-4c26-8655-f8c519ec31d6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233351Z:96d3b66d-ed31-4c26-8655-f8c519ec31d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:10:01 GMT" ], - "Connection": [ "close" ] + "Date": [ "Sun, 02 Aug 2020 23:33:50 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "103" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "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..bd363d3acada 100644 --- a/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Tests.ps1 +++ b/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Tests.ps1 @@ -24,12 +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 = Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -ConsumerGroup '$Default' -Compression "None" $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" } @@ -45,12 +42,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 = Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -ConsumerGroup '$Default' $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" } @@ -64,12 +58,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 = Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -ConsumerGroup '$Default' $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" } @@ -83,13 +74,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 = Invoke-AzKustoDataConnectionValidation -InputObject $database -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -ConsumerGroup '$Default' -Compression "None" $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" } @@ -105,13 +93,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 = Invoke-AzKustoDataConnectionValidation -InputObject $database -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -ConsumerGroup '$Default' $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" } @@ -125,13 +110,10 @@ 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 = Invoke-AzKustoDataConnectionValidation -InputObject $database -DataConnectionName $dataConnectionName -Location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -ConsumerGroup '$Default' $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" } } diff --git a/src/Kusto/test/Invoke-AzKustoDetachClusterFollowerDatabase.Recording.json b/src/Kusto/test/Invoke-AzKustoDetachClusterFollowerDatabase.Recording.json index de3b4364b95b..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14", + "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": [ "bb4501a9-20b9-475d-a1c9-a13bd42607d0" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8951faf3-8389-4da4-ad72-637363f7039b?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "9584386c-4075-44e4-ac64-1bbba76edf6e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091003Z:9584386c-4075-44e4-ac64-1bbba76edf6e" ], + "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, 30 Jul 2020 09:10:03 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf\",\"name\":\"testcluster5arkid/testdatabaseani9hf\",\"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/8951faf3-8389-4da4-ad72-637363f7039b?api-version=2020-06-14+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/8951faf3-8389-4da4-ad72-637363f7039b?api-version=2020-06-14", + "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": [ "195", "196" ], - "x-ms-client-request-id": [ "79073fe5-30f6-425f-bc7a-22bd6e4542ee", "79073fe5-30f6-425f-bc7a-22bd6e4542ee" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "a56da1a3-1a84-47b1-905b-0a1741de46d6" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "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-correlation-request-id": [ "20bea218-dbc7-4ecb-8692-e616df58c4a7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091034Z:20bea218-dbc7-4ecb-8692-e616df58c4a7" ], + "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, 30 Jul 2020 09:10:33 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:34:22 GMT" ] }, "ContentHeaders": { "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/8951faf3-8389-4da4-ad72-637363f7039b\",\"name\":\"8951faf3-8389-4da4-ad72-637363f7039b\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:10:03.8233627Z\",\"endTime\":\"2020-07-30T09:10:07.1373046Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"829918cd-d4ce-4a30-8153-dc60fd2caf66\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14", + "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": [ "195", "196", "197" ], - "x-ms-client-request-id": [ "79073fe5-30f6-425f-bc7a-22bd6e4542ee", "79073fe5-30f6-425f-bc7a-22bd6e4542ee", "79073fe5-30f6-425f-bc7a-22bd6e4542ee" ], + "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": [ "299" ], - "x-ms-request-id": [ "529ba209-2a62-4766-ac1d-4c6e3dd4de65" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "2ac407c2-b247-44de-b7e9-16b08d7d1ac3" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091034Z:2ac407c2-b247-44de-b7e9-16b08d7d1ac3" ], + "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, 30 Jul 2020 09:10:34 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf\",\"name\":\"testcluster5arkid/testdatabaseani9hf\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf?api-version=2020-06-14", - "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\r\n \"databaseName\": \"testdatabaseani9hf\",\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": [ "8490509a-2833-4dc5-a45b-589ef51be2ea" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6d63ad0d-7228-48fa-8865-6c7671c57a41?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "830dc7ac-b278-4328-99df-d191eee32f5d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091035Z:830dc7ac-b278-4328-99df-d191eee32f5d" ], + "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, 30 Jul 2020 09:10:34 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf\",\"name\":\"testfclusterkgb956/testdbconfani9hf\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabaseani9hf\",\"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/6d63ad0d-7228-48fa-8865-6c7671c57a41?api-version=2020-06-14+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/6d63ad0d-7228-48fa-8865-6c7671c57a41?api-version=2020-06-14", + "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": [ "198", "199" ], - "x-ms-client-request-id": [ "a1a83150-4a7e-48d3-b6c9-46cc5811e080", "a1a83150-4a7e-48d3-b6c9-46cc5811e080" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "278a44f2-f15a-4fd1-b051-2c572abf3eca" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "4bf558b7-e7f2-411b-9c47-c9a5592c644b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091105Z:4bf558b7-e7f2-411b-9c47-c9a5592c644b" ], + "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, 30 Jul 2020 09:11:04 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:34:53 GMT" ] }, "ContentHeaders": { "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/6d63ad0d-7228-48fa-8865-6c7671c57a41\",\"name\":\"6d63ad0d-7228-48fa-8865-6c7671c57a41\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:10:35.2867447Z\",\"endTime\":\"2020-07-30T09:10:37.5369235Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"c9ad8ddb-edc0-4f71-9408-4525d2708e7a\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf?api-version=2020-06-14", + "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": [ "198", "199", "200" ], - "x-ms-client-request-id": [ "a1a83150-4a7e-48d3-b6c9-46cc5811e080", "a1a83150-4a7e-48d3-b6c9-46cc5811e080", "a1a83150-4a7e-48d3-b6c9-46cc5811e080" ], + "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" ], @@ -222,28 +222,28 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "467e2c19-1af7-49b9-9737-cca24395cffd" ], + "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": [ "1d305f14-3c1b-4912-892c-75a1d73b1a63" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091106Z:1d305f14-3c1b-4912-892c-75a1d73b1a63" ], + "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, 30 Jul 2020 09:11:05 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf\",\"name\":\"testfclusterkgb956/testdbconfani9hf\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabaseani9hf\",\"attachedDatabaseNames\":[\"testdatabaseani9hf\"],\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/detachFollowerDatabases?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/detachFollowerDatabases?api-version=2020-06-14", - "Content": "{\r\n \"attachedDatabaseConfigurationName\": \"testdbconfani9hf\",\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956\"\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/c8f7a37f-21bf-46c3-be95-d734b2c7b86b?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "7f0e88ea-093e-46bd-b2e8-d10941f58bd7" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c8f7a37f-21bf-46c3-be95-d734b2c7b86b?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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/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": [ "1199" ], - "x-ms-correlation-request-id": [ "0279a7a0-db8a-4d83-8871-5e43ede469c4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091106Z:0279a7a0-db8a-4d83-8871-5e43ede469c4" ], + "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, 30 Jul 2020 09:11:05 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/c8f7a37f-21bf-46c3-be95-d734b2c7b86b?api-version=2020-06-14+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/c8f7a37f-21bf-46c3-be95-d734b2c7b86b?api-version=2020-06-14", + "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": [ "201", "202" ], - "x-ms-client-request-id": [ "65edbe59-efee-4032-a298-20540fd3bf31", "65edbe59-efee-4032-a298-20540fd3bf31" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-request-id": [ "71027143-9ba9-49b0-915f-e52ee8fe2876" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "32f68e20-28a8-4e59-9ec7-4737017b35a9" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091136Z:32f68e20-28a8-4e59-9ec7-4737017b35a9" ], + "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, 30 Jul 2020 09:11:36 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:35:25 GMT" ] }, "ContentHeaders": { "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/c8f7a37f-21bf-46c3-be95-d734b2c7b86b\",\"name\":\"c8f7a37f-21bf-46c3-be95-d734b2c7b86b\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:11:06.4392731Z\",\"endTime\":\"2020-07-30T09:11:09.0007767Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"58fedda9-93c6-4c1d-9232-a436c39a6e80\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/c8f7a37f-21bf-46c3-be95-d734b2c7b86b?api-version=2020-06-14\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/c8f7a37f-21bf-46c3-be95-d734b2c7b86b?api-version=2020-06-14\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": [ "201", "202", "203" ], - "x-ms-client-request-id": [ "65edbe59-efee-4032-a298-20540fd3bf31", "65edbe59-efee-4032-a298-20540fd3bf31", "65edbe59-efee-4032-a298-20540fd3bf31" ], + "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": [ "1a383dc8-0528-415c-b418-6827d6327148" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "296" ], - "x-ms-correlation-request-id": [ "0efe0d7c-93db-4eaa-b1d0-6b89b995ed79" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091136Z:0efe0d7c-93db-4eaa-b1d0-6b89b995ed79" ], + "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, 30 Jul 2020 09:11:36 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14", + "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": [ "204" ], - "x-ms-client-request-id": [ "0e8ea190-16de-41a4-9fdf-42c2191842ea" ], + "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/40cd0e2f-ef0d-476e-b11b-d2026cdb8429?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/40cd0e2f-ef0d-476e-b11b-d2026cdb8429?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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/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": [ "95ce0ea7-a4a9-4c81-b9aa-4f18f0cdd602" ], - "x-ms-correlation-request-id": [ "95ce0ea7-a4a9-4c81-b9aa-4f18f0cdd602" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091137Z:95ce0ea7-a4a9-4c81-b9aa-4f18f0cdd602" ], + "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, 30 Jul 2020 09:11:37 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/40cd0e2f-ef0d-476e-b11b-d2026cdb8429?api-version=2020-06-14+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/40cd0e2f-ef0d-476e-b11b-d2026cdb8429?api-version=2020-06-14", + "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": [ "204", "205" ], - "x-ms-client-request-id": [ "0e8ea190-16de-41a4-9fdf-42c2191842ea", "0e8ea190-16de-41a4-9fdf-42c2191842ea" ], + "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": [ "295" ], - "x-ms-request-id": [ "a8321ca7-3eca-45ce-8daa-f916c68d2185" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "fa07461e-331f-42d8-a688-68170489b47d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091207Z:fa07461e-331f-42d8-a688-68170489b47d" ], + "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, 30 Jul 2020 09:12:06 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:35:56 GMT" ] }, "ContentHeaders": { "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/40cd0e2f-ef0d-476e-b11b-d2026cdb8429\",\"name\":\"40cd0e2f-ef0d-476e-b11b-d2026cdb8429\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:11:37.3497607Z\",\"endTime\":\"2020-07-30T09:11:40.5374813Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"e360ee54-f679-496b-a9d6-9fab87bdf38c\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/40cd0e2f-ef0d-476e-b11b-d2026cdb8429?api-version=2020-06-14\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/40cd0e2f-ef0d-476e-b11b-d2026cdb8429?api-version=2020-06-14\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": [ "204", "205", "206" ], - "x-ms-client-request-id": [ "0e8ea190-16de-41a4-9fdf-42c2191842ea", "0e8ea190-16de-41a4-9fdf-42c2191842ea", "0e8ea190-16de-41a4-9fdf-42c2191842ea" ], + "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": [ "78100180-7546-43f2-b787-1c114fa396f6" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "294" ], - "x-ms-correlation-request-id": [ "6146a83c-aa03-49b6-814f-9e9e1e7007c1" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091207Z:6146a83c-aa03-49b6-814f-9e9e1e7007c1" ], + "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, 30 Jul 2020 09:12:06 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14", + "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": [ "a3860446-44c1-4732-83c7-5d13cc36fb7f" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/66f41c54-f6a5-4cd0-a6e2-18afc84e9d3a?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "02db381b-be99-4584-80ef-5a5fc9da4e5c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091208Z:02db381b-be99-4584-80ef-5a5fc9da4e5c" ], + "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, 30 Jul 2020 09:12:07 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj\",\"name\":\"testcluster5arkid/testdatabasev8aetj\",\"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/66f41c54-f6a5-4cd0-a6e2-18afc84e9d3a?api-version=2020-06-14+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/66f41c54-f6a5-4cd0-a6e2-18afc84e9d3a?api-version=2020-06-14", + "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": [ "207", "208" ], - "x-ms-client-request-id": [ "28339fc7-0a00-4354-a862-f63a893e1382", "28339fc7-0a00-4354-a862-f63a893e1382" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "293" ], - "x-ms-request-id": [ "324ac783-68d1-4f76-a338-78480b99d065" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "95c3f5a2-4573-4aef-99a2-f23411c41f5a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091238Z:95c3f5a2-4573-4aef-99a2-f23411c41f5a" ], + "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, 30 Jul 2020 09:12:38 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:36:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "496" ], + "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/66f41c54-f6a5-4cd0-a6e2-18afc84e9d3a\",\"name\":\"66f41c54-f6a5-4cd0-a6e2-18afc84e9d3a\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:12:08.4495413Z\",\"endTime\":\"2020-07-30T09:12:11.0435304Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"cfb79cb0-9c26-4f22-b4dd-d54c61188d0a\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14", + "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": [ "207", "208", "209" ], - "x-ms-client-request-id": [ "28339fc7-0a00-4354-a862-f63a893e1382", "28339fc7-0a00-4354-a862-f63a893e1382", "28339fc7-0a00-4354-a862-f63a893e1382" ], + "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": [ "298" ], - "x-ms-request-id": [ "02c8023b-bc87-4838-a7a9-84f794154476" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "f8e4a1ae-7cd6-4ae7-be8c-5b85964e9177" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091239Z:f8e4a1ae-7cd6-4ae7-be8c-5b85964e9177" ], + "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, 30 Jul 2020 09:12:38 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj\",\"name\":\"testcluster5arkid/testdatabasev8aetj\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?api-version=2020-06-14", - "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\r\n \"databaseName\": \"testdatabasev8aetj\",\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": [ "7e2148e7-059a-42bd-8702-a156b045234c" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/81f61eee-e0d1-4faa-9558-916100d260a6?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "72b95bba-a2bc-4b11-8218-1da801ecf0bf" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091240Z:72b95bba-a2bc-4b11-8218-1da801ecf0bf" ], + "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, 30 Jul 2020 09:12:39 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj\",\"name\":\"testfclusterkgb956/testdbconfv8aetj\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabasev8aetj\",\"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/81f61eee-e0d1-4faa-9558-916100d260a6?api-version=2020-06-14+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/81f61eee-e0d1-4faa-9558-916100d260a6?api-version=2020-06-14", + "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": [ "210", "211" ], - "x-ms-client-request-id": [ "50186de9-e774-4e30-8dbd-f417ed408ff9", "50186de9-e774-4e30-8dbd-f417ed408ff9" ], + "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": [ "292" ], - "x-ms-request-id": [ "3a37be2c-a6fc-43ad-8f95-935b184495e8" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "cc05c37c-115c-47bb-8600-f0aa24e6dfa0" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091310Z:cc05c37c-115c-47bb-8600-f0aa24e6dfa0" ], + "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, 30 Jul 2020 09:13:10 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:36:59 GMT" ] }, "ContentHeaders": { "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/81f61eee-e0d1-4faa-9558-916100d260a6\",\"name\":\"81f61eee-e0d1-4faa-9558-916100d260a6\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:12:39.9547363Z\",\"endTime\":\"2020-07-30T09:12:43.4708195Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"d59f2101-d759-49e2-a6f6-d42b9c55b615\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?api-version=2020-06-14", + "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": [ "210", "211", "212" ], - "x-ms-client-request-id": [ "50186de9-e774-4e30-8dbd-f417ed408ff9", "50186de9-e774-4e30-8dbd-f417ed408ff9", "50186de9-e774-4e30-8dbd-f417ed408ff9" ], + "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" ], @@ -699,31 +699,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "a347e08d-c2a4-45b7-b144-c936d44dc3be" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "aadf8cac-f5a2-4343-ad13-92e89dae6df7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091310Z:aadf8cac-f5a2-4343-ad13-92e89dae6df7" ], + "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, 30 Jul 2020 09:13:10 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj\",\"name\":\"testfclusterkgb956/testdbconfv8aetj\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabasev8aetj\",\"attachedDatabaseNames\":[\"testdatabasev8aetj\"],\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14", + "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": [ "213" ], - "x-ms-client-request-id": [ "5c191bd0-9510-4d63-82a4-39415cc590ba" ], + "x-ms-unique-id": [ "220" ], + "x-ms-client-request-id": [ "eba53dc7-4f7f-4e81-8f68-75341275253e" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -741,28 +741,28 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "6e7f9d36-903d-4079-8765-43b36e1373a4" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "321d7d9e-b8bd-47af-afd2-55c9b80d642c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091311Z:321d7d9e-b8bd-47af-afd2-55c9b80d642c" ], + "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, 30 Jul 2020 09:13:11 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:37:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "858" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/detachFollowerDatabases?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/detachFollowerDatabases?api-version=2020-06-14", - "Content": "{\r\n \"attachedDatabaseConfigurationName\": \"testdbconfv8aetj\",\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956\"\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/6ff8aae0-c26d-4e9e-88c6-19d105fc3388?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "f9b52eff-a3e9-404e-82f0-4261d01c87fe" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6ff8aae0-c26d-4e9e-88c6-19d105fc3388?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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/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": [ "1198" ], - "x-ms-correlation-request-id": [ "79e4bae9-3118-4293-b9e6-ea68f7d5f506" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091311Z:79e4bae9-3118-4293-b9e6-ea68f7d5f506" ], + "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, 30 Jul 2020 09:13: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/6ff8aae0-c26d-4e9e-88c6-19d105fc3388?api-version=2020-06-14+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/6ff8aae0-c26d-4e9e-88c6-19d105fc3388?api-version=2020-06-14", + "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": [ "214", "215" ], - "x-ms-client-request-id": [ "db925d35-8db0-4fe9-8434-ae1a51cbe469", "db925d35-8db0-4fe9-8434-ae1a51cbe469" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "291" ], - "x-ms-request-id": [ "c54bf19b-aea3-46ed-b27b-65c56a67869b" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "d3796ce5-7eea-4592-ab62-620d370f17b5" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091341Z:d3796ce5-7eea-4592-ab62-620d370f17b5" ], + "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, 30 Jul 2020 09:13:41 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:37:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "503" ], + "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/6ff8aae0-c26d-4e9e-88c6-19d105fc3388\",\"name\":\"6ff8aae0-c26d-4e9e-88c6-19d105fc3388\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:13:11.4416753Z\",\"endTime\":\"2020-07-30T09:13:13.926648Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"cca38989-ba07-42ad-a211-420095cfc712\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/6ff8aae0-c26d-4e9e-88c6-19d105fc3388?api-version=2020-06-14\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/6ff8aae0-c26d-4e9e-88c6-19d105fc3388?api-version=2020-06-14\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": [ "214", "215", "216" ], - "x-ms-client-request-id": [ "db925d35-8db0-4fe9-8434-ae1a51cbe469", "db925d35-8db0-4fe9-8434-ae1a51cbe469", "db925d35-8db0-4fe9-8434-ae1a51cbe469" ], + "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": [ "f2ef0a31-35cf-4e21-bc3b-418e8fcda41c" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "290" ], - "x-ms-correlation-request-id": [ "c97a09e7-cc62-4d70-a5d8-a6043684ce37" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091341Z:c97a09e7-cc62-4d70-a5d8-a6043684ce37" ], + "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, 30 Jul 2020 09:13:41 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14", + "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": [ "217" ], - "x-ms-client-request-id": [ "85d2200b-37cc-45b6-a3d6-2f77dea9251e" ], + "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/a2bfc0a0-ab03-4a7f-937f-73c6594734f5?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/a2bfc0a0-ab03-4a7f-937f-73c6594734f5?api-version=2020-06-14" ], + "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": [ "63eb3b22-ea2f-4081-b3ec-25e6fe818a6f" ], - "x-ms-correlation-request-id": [ "63eb3b22-ea2f-4081-b3ec-25e6fe818a6f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091342Z:63eb3b22-ea2f-4081-b3ec-25e6fe818a6f" ], + "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, 30 Jul 2020 09:13:41 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/a2bfc0a0-ab03-4a7f-937f-73c6594734f5?api-version=2020-06-14+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/a2bfc0a0-ab03-4a7f-937f-73c6594734f5?api-version=2020-06-14", + "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": [ "217", "218" ], - "x-ms-client-request-id": [ "85d2200b-37cc-45b6-a3d6-2f77dea9251e", "85d2200b-37cc-45b6-a3d6-2f77dea9251e" ], + "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": [ "289" ], - "x-ms-request-id": [ "8db85997-32dd-4a70-aa53-ba19989bd082" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "90ec3e20-e33f-4203-8dc7-9ac2b9c46c5b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091412Z:90ec3e20-e33f-4203-8dc7-9ac2b9c46c5b" ], + "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, 30 Jul 2020 09:14:11 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:38:01 GMT" ] }, "ContentHeaders": { "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/a2bfc0a0-ab03-4a7f-937f-73c6594734f5\",\"name\":\"a2bfc0a0-ab03-4a7f-937f-73c6594734f5\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:13:42.3213553Z\",\"endTime\":\"2020-07-30T09:13:44.5715052Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"e1dfb51b-bece-440c-aba1-5bccfc33ad77\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/a2bfc0a0-ab03-4a7f-937f-73c6594734f5?api-version=2020-06-14\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/a2bfc0a0-ab03-4a7f-937f-73c6594734f5?api-version=2020-06-14\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": [ "217", "218", "219" ], - "x-ms-client-request-id": [ "85d2200b-37cc-45b6-a3d6-2f77dea9251e", "85d2200b-37cc-45b6-a3d6-2f77dea9251e", "85d2200b-37cc-45b6-a3d6-2f77dea9251e" ], + "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": [ "c9addc08-c73b-4304-aaf4-f0636693a443" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "288" ], - "x-ms-correlation-request-id": [ "52500b22-77bb-45b1-b1d7-41e4faa80034" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091412Z:52500b22-77bb-45b1-b1d7-41e4faa80034" ], + "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, 30 Jul 2020 09:14:12 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 7ee76b2be3ca..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/diagnoseVirtualNetwork?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/diagnoseVirtualNetwork?api-version=2020-06-14", + "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": [ "220" ], - "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd" ], + "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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "7941ed23-7469-45c4-926c-67fa03060aa2" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14" ], + "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": [ "1197" ], - "x-ms-correlation-request-id": [ "fdcad114-7e5c-493d-a6bb-acca58ed7070" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091413Z:fdcad114-7e5c-493d-a6bb-acca58ed7070" ], + "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, 30 Jul 2020 09:14:13 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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14+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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14", + "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": [ "220", "221" ], - "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "ff511bf9-f2d4-406c-a01b-02583175786d" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "3dd82c56-64c6-4773-817a-a58cd890a421" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091444Z:3dd82c56-64c6-4773-817a-a58cd890a421" ], + "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, 30 Jul 2020 09:14:43 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14+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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14", + "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": [ "220", "221", "222" ], - "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], + "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-correlation-request-id": [ "44650d71-cf0c-4504-aa9c-478e9aeb5880" ], - "x-ms-request-id": [ "dc902e00-0ad8-469a-a838-b19238b389cb" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-routing-request-id": [ "NORTHEUROPE:20200730T091514Z:44650d71-cf0c-4504-aa9c-478e9aeb5880" ], + "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, 30 Jul 2020 09:15:13 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14+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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14", + "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": [ "220", "221", "222", "223" ], - "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], + "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": [ "285" ], - "x-ms-request-id": [ "69b2929d-fff1-4336-83a3-c81940947b14" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "78d19fcb-49ea-4722-b235-1a0a02932acf" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091544Z:78d19fcb-49ea-4722-b235-1a0a02932acf" ], + "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, 30 Jul 2020 09:15:44 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14+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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14", + "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": [ "220", "221", "222", "223", "224" ], - "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "dbb5ed6f-a2b8-4202-a9dc-d92f2f1da0db" ], + "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-correlation-request-id": [ "eefac2ba-5111-496b-9406-9a9be89ee15f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091615Z:eefac2ba-5111-496b-9406-9a9be89ee15f" ], + "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, 30 Jul 2020 09:16:14 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14+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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14", + "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": [ "220", "221", "222", "223", "224", "225" ], - "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], + "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": [ "283" ], - "x-ms-request-id": [ "a30c11ac-1ad8-4459-87b0-c22402cf3971" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "5c0ec271-6180-4427-b721-d2c93e33d198" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091645Z:5c0ec271-6180-4427-b721-d2c93e33d198" ], + "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, 30 Jul 2020 09:16:45 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14+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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14", + "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": [ "220", "221", "222", "223", "224", "225", "226" ], - "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], + "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": [ "282" ], - "x-ms-request-id": [ "e0955c27-6d52-4f6d-9951-4043c5ad149b" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "55ce3e32-5a53-4cda-b76b-e049893a6d37" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091715Z:55ce3e32-5a53-4cda-b76b-e049893a6d37" ], + "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, 30 Jul 2020 09:17:14 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14+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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14", + "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": [ "220", "221", "222", "223", "224", "225", "226", "227" ], - "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "c0adf65f-b1b0-4e63-bfea-689e5e7b3ab5" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "071ade8b-b01f-49b1-bf28-c7d87c88af54" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091745Z:071ade8b-b01f-49b1-bf28-c7d87c88af54" ], + "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, 30 Jul 2020 09:17:45 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14+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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14", + "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": [ "220", "221", "222", "223", "224", "225", "226", "227", "228" ], - "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], + "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": [ "280" ], - "x-ms-request-id": [ "89ec3c1e-4bf1-458b-9799-1e1870afeb59" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "011a2ccd-c6b9-4647-8dbb-1bbb64c18f45" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091816Z:011a2ccd-c6b9-4647-8dbb-1bbb64c18f45" ], + "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, 30 Jul 2020 09:18:15 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14+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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14", + "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": [ "220", "221", "222", "223", "224", "225", "226", "227", "228", "229" ], - "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], + "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": [ "279" ], - "x-ms-request-id": [ "b61238dc-505c-41de-bd49-86ef6650bee5" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "511a8d55-e35e-4e6f-a8c8-fd08fba69390" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091846Z:511a8d55-e35e-4e6f-a8c8-fd08fba69390" ], + "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, 30 Jul 2020 09:18:46 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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:14:13.4821411Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14+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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14", + "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": [ "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230" ], - "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "278" ], - "x-ms-request-id": [ "1bcd84f2-aa4e-4357-a3a3-775c91cb5b0a" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "02312635-5dde-46cd-8c41-59db62331c20" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091916Z:02312635-5dde-46cd-8c41-59db62331c20" ], + "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, 30 Jul 2020 09:19:15 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:43:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "359" ], + "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/004a9abc-79d2-401f-915c-f37e20a499d2\",\"name\":\"004a9abc-79d2-401f-915c-f37e20a499d2\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:14:13.4821411Z\",\"endTime\":\"2020-07-30T09:19:14.189814Z\",\"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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14\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/004a9abc-79d2-401f-915c-f37e20a499d2?api-version=2020-06-14\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": [ "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231" ], - "x-ms-client-request-id": [ "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd", "364a5acf-25de-4394-bc19-88df84f84bbd" ], + "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": [ "277" ], - "x-ms-request-id": [ "26ccd0cd-9452-44b8-93fb-9e1b9d2e2a58" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "bbff5b98-1bcb-4a9d-9b0d-3118b9d7cc5f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091916Z:bbff5b98-1bcb-4a9d-9b0d-3118b9d7cc5f" ], + "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, 30 Jul 2020 09:19:15 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14", + "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": [ "232" ], - "x-ms-client-request-id": [ "22405e2e-970a-49b6-8234-7f00545e8789" ], + "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": [ "067764d7-2f1d-4829-89e1-bb37ce0ab3c9" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "8b9cfffc-d0f8-44b1-8b1e-67325ee7d46e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091917Z:8b9cfffc-d0f8-44b1-8b1e-67325ee7d46e" ], + "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, 30 Jul 2020 09:19:16 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:43:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "858" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/diagnoseVirtualNetwork?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/diagnoseVirtualNetwork?api-version=2020-06-14", + "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": [ "233" ], - "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272" ], + "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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "d658a7ab-d86e-4a91-973c-7608d2ecec01" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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/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": [ "1196" ], - "x-ms-correlation-request-id": [ "11e6ce2a-87fa-4ef6-9194-9ebe9a61cef4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091917Z:11e6ce2a-87fa-4ef6-9194-9ebe9a61cef4" ], + "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, 30 Jul 2020 09:19:16 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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14+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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14", + "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": [ "233", "234" ], - "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], + "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": [ "276" ], - "x-ms-request-id": [ "fa228387-b179-4db3-9861-05ef877f79b0" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "af5422f7-7b6b-4ffb-84b4-5ae481656f39" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T091948Z:af5422f7-7b6b-4ffb-84b4-5ae481656f39" ], + "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, 30 Jul 2020 09:19:47 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14+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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14", + "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": [ "233", "234", "235" ], - "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "4c0c7b21-b9e4-4ece-bc8c-eb2cb46fd1b0" ], + "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-correlation-request-id": [ "c1fc42d7-fc93-4607-b32d-876e2e1e4df2" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092018Z:c1fc42d7-fc93-4607-b32d-876e2e1e4df2" ], + "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, 30 Jul 2020 09:20:17 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14+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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14", + "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": [ "233", "234", "235", "236" ], - "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], + "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-correlation-request-id": [ "0f6580d4-acf3-4fc0-9d1e-2c78e3736090" ], - "x-ms-request-id": [ "7898739a-7bf6-4bb4-aa8c-71e499573f68" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-routing-request-id": [ "NORTHEUROPE:20200730T092048Z:0f6580d4-acf3-4fc0-9d1e-2c78e3736090" ], + "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, 30 Jul 2020 09:20:48 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14+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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14", + "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": [ "233", "234", "235", "236", "237" ], - "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], + "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": [ "286" ], - "x-ms-request-id": [ "eb65c3e2-e2e9-40c6-94c6-ed93d7bbcec2" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "f0202517-d4c6-4767-9ce2-24c42ec62c7a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092119Z:f0202517-d4c6-4767-9ce2-24c42ec62c7a" ], + "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, 30 Jul 2020 09:21:18 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14+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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14", + "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": [ "233", "234", "235", "236", "237", "238" ], - "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "51a75ffd-0c12-4d2f-b20c-decb1ce3c985" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "9a850dee-c98a-4472-8220-9d3096033d35" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092149Z:9a850dee-c98a-4472-8220-9d3096033d35" ], + "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, 30 Jul 2020 09:21:48 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14+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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14", + "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": [ "233", "234", "235", "236", "237", "238", "239" ], - "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], + "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": [ "284" ], - "x-ms-request-id": [ "fce1d0c9-1415-48b4-9288-c2161964bc0c" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "a5092397-1405-47dd-bedb-f4c3312482be" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092219Z:a5092397-1405-47dd-bedb-f4c3312482be" ], + "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, 30 Jul 2020 09:22:18 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14+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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14", + "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": [ "233", "234", "235", "236", "237", "238", "239", "240" ], - "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], + "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": [ "283" ], - "x-ms-request-id": [ "443fcdd1-3e01-4884-a327-4bae7ea87ba7" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "f0cf98cf-bac2-482b-84ab-5fe615768b47" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092249Z:f0cf98cf-bac2-482b-84ab-5fe615768b47" ], + "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, 30 Jul 2020 09:22:49 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14+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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14", + "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": [ "233", "234", "235", "236", "237", "238", "239", "240", "241" ], - "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "831e3be4-d396-46b3-8a4f-33fb767c9415" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "63f38b45-d43d-4108-b52d-ee5518e21ac0" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092320Z:63f38b45-d43d-4108-b52d-ee5518e21ac0" ], + "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, 30 Jul 2020 09:23:19 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14+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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14", + "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": [ "233", "234", "235", "236", "237", "238", "239", "240", "241", "242" ], - "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], + "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": [ "281" ], - "x-ms-request-id": [ "44f5950b-e09c-474e-b85c-e6beabfcde7b" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "befc39a2-b715-407c-9e5c-c8b8d0d5b2e4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092350Z:befc39a2-b715-407c-9e5c-c8b8d0d5b2e4" ], + "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, 30 Jul 2020 09:23:50 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:19:17.5652281Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14+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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14", + "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": [ "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243" ], - "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], + "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": [ "280" ], - "x-ms-request-id": [ "c9336e2f-1f32-43cc-9b5e-b222c954d938" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "94d95a25-975b-43ca-9f5e-59eb1ab99403" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092420Z:94d95a25-975b-43ca-9f5e-59eb1ab99403" ], + "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, 30 Jul 2020 09:24:19 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/554cbdfc-f453-4f45-bfc8-09f56272911d\",\"name\":\"554cbdfc-f453-4f45-bfc8-09f56272911d\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:19:17.5652281Z\",\"endTime\":\"2020-07-30T09:24:18.1400933Z\",\"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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14\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/554cbdfc-f453-4f45-bfc8-09f56272911d?api-version=2020-06-14\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": [ "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244" ], - "x-ms-client-request-id": [ "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272", "a203aea8-75e5-4fb0-8093-36e1184ee272" ], + "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": [ "279" ], - "x-ms-request-id": [ "647a4ca6-a2b5-491d-8f91-e7bb7743c61e" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "16ba95c9-69ac-4351-9d4f-7e99ccf72274" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092420Z:16ba95c9-69ac-4351-9d4f-7e99ccf72274" ], + "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, 30 Jul 2020 09:24:19 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 704b7f55d9a0..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14", + "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": [ "8544c40b-194a-4191-b7b8-510f00c4a9b2" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/1110e02d-4e07-4e15-b21d-4790b486439f?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "15bbfc2c-cd6d-4223-a61a-fbaff27b91b4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092421Z:15bbfc2c-cd6d-4223-a61a-fbaff27b91b4" ], + "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, 30 Jul 2020 09:24:21 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf\",\"name\":\"testcluster5arkid/testdatabaseani9hf\",\"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/1110e02d-4e07-4e15-b21d-4790b486439f?api-version=2020-06-14+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/1110e02d-4e07-4e15-b21d-4790b486439f?api-version=2020-06-14", + "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": [ "245", "246" ], - "x-ms-client-request-id": [ "e221da3e-b1b6-4cc6-9928-9d963e76eb47", "e221da3e-b1b6-4cc6-9928-9d963e76eb47" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "278" ], - "x-ms-request-id": [ "9fa9e3f4-2abb-4159-ab0c-a575a0a3565a" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "97db0769-4e7d-4ff0-b78a-d30a1fd7ca9c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092452Z:97db0769-4e7d-4ff0-b78a-d30a1fd7ca9c" ], + "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, 30 Jul 2020 09:24:51 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:48:40 GMT" ] }, "ContentHeaders": { "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/1110e02d-4e07-4e15-b21d-4790b486439f\",\"name\":\"1110e02d-4e07-4e15-b21d-4790b486439f\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:24:21.7497668Z\",\"endTime\":\"2020-07-30T09:24:23.8452974Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"ab39d175-ffad-42f2-a037-c38ef17894de\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14", + "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": [ "245", "246", "247" ], - "x-ms-client-request-id": [ "e221da3e-b1b6-4cc6-9928-9d963e76eb47", "e221da3e-b1b6-4cc6-9928-9d963e76eb47", "e221da3e-b1b6-4cc6-9928-9d963e76eb47" ], + "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": [ "8e3b24dc-29bc-4ffc-8926-6cfa44e0368e" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "887fd240-5c72-44f3-ac0d-6d98b1a8f7cf" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092452Z:887fd240-5c72-44f3-ac0d-6d98b1a8f7cf" ], + "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, 30 Jul 2020 09:24:52 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf\",\"name\":\"testcluster5arkid/testdatabaseani9hf\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf?api-version=2020-06-14", - "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\r\n \"databaseName\": \"testdatabaseani9hf\",\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": [ "83af4875-3709-43b1-b486-9252577d4501" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/01684111-984b-4726-951b-4882d77c991d?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "b4f1a7b5-f99f-4444-939f-d7d70eff2615" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092453Z:b4f1a7b5-f99f-4444-939f-d7d70eff2615" ], + "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, 30 Jul 2020 09:24:52 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf\",\"name\":\"testfclusterkgb956/testdbconfani9hf\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabaseani9hf\",\"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/01684111-984b-4726-951b-4882d77c991d?api-version=2020-06-14+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/01684111-984b-4726-951b-4882d77c991d?api-version=2020-06-14", + "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": [ "248", "249" ], - "x-ms-client-request-id": [ "94ebdcc5-6fa2-4941-884f-2188eeb5bc28", "94ebdcc5-6fa2-4941-884f-2188eeb5bc28" ], + "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": [ "288" ], - "x-ms-request-id": [ "734f15c1-ee47-4365-af38-a518087b77e4" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "7cb6c9c4-f0d9-475d-8604-b1d4c73f9fd8" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092523Z:7cb6c9c4-f0d9-475d-8604-b1d4c73f9fd8" ], + "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, 30 Jul 2020 09:25:22 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:49:11 GMT" ] }, "ContentHeaders": { "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/01684111-984b-4726-951b-4882d77c991d\",\"name\":\"01684111-984b-4726-951b-4882d77c991d\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:24:53.1640238Z\",\"endTime\":\"2020-07-30T09:24:56.3361207Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"8cbaa400-da7c-4d8c-bd2d-4c393b1b2c2e\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf?api-version=2020-06-14", + "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": [ "248", "249", "250" ], - "x-ms-client-request-id": [ "94ebdcc5-6fa2-4941-884f-2188eeb5bc28", "94ebdcc5-6fa2-4941-884f-2188eeb5bc28", "94ebdcc5-6fa2-4941-884f-2188eeb5bc28" ], + "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": [ "0ee64527-c897-4f77-be4b-055b87f9874a" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "22b84603-3c41-44fe-90d4-71ae45098fdf" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092523Z:22b84603-3c41-44fe-90d4-71ae45098fdf" ], + "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, 30 Jul 2020 09:25:23 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfani9hf\",\"name\":\"testfclusterkgb956/testdbconfani9hf\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabaseani9hf\",\"attachedDatabaseNames\":[\"testdatabaseani9hf\"],\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/detachFollowerDatabases?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/detachFollowerDatabases?api-version=2020-06-14", - "Content": "{\r\n \"attachedDatabaseConfigurationName\": \"testdbconfani9hf\",\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956\"\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/1675ac0e-2e74-47dc-83d3-80734f461717?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "80e7cf5f-ed7e-49fb-911c-b6f7d02465fe" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/1675ac0e-2e74-47dc-83d3-80734f461717?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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/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": [ "1195" ], - "x-ms-correlation-request-id": [ "71ba9774-04c4-40a3-81c1-8896f04e68e5" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092524Z:71ba9774-04c4-40a3-81c1-8896f04e68e5" ], + "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, 30 Jul 2020 09:25:23 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/1675ac0e-2e74-47dc-83d3-80734f461717?api-version=2020-06-14+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/1675ac0e-2e74-47dc-83d3-80734f461717?api-version=2020-06-14", + "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": [ "251", "252" ], - "x-ms-client-request-id": [ "f2879245-98c4-4b71-b539-69e75bf266fd", "f2879245-98c4-4b71-b539-69e75bf266fd" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "9dc0a871-08b3-4ce3-92b5-57d86cf95325" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "e6c55869-bf3f-4803-b43f-38b5d4c2d2ae" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092554Z:e6c55869-bf3f-4803-b43f-38b5d4c2d2ae" ], + "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, 30 Jul 2020 09:25:54 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:49:42 GMT" ] }, "ContentHeaders": { "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/1675ac0e-2e74-47dc-83d3-80734f461717\",\"name\":\"1675ac0e-2e74-47dc-83d3-80734f461717\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:25:24.2677755Z\",\"endTime\":\"2020-07-30T09:25:27.9555512Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"a4ab9a94-1535-403a-a428-f00516fb5bb3\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/1675ac0e-2e74-47dc-83d3-80734f461717?api-version=2020-06-14\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/1675ac0e-2e74-47dc-83d3-80734f461717?api-version=2020-06-14\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": [ "251", "252", "253" ], - "x-ms-client-request-id": [ "f2879245-98c4-4b71-b539-69e75bf266fd", "f2879245-98c4-4b71-b539-69e75bf266fd", "f2879245-98c4-4b71-b539-69e75bf266fd" ], + "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": [ "79186bcb-eb41-4f8f-b220-744122222c7a" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "286" ], - "x-ms-correlation-request-id": [ "4be8439a-4419-492c-9f32-0d8a62ccadeb" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092554Z:4be8439a-4419-492c-9f32-0d8a62ccadeb" ], + "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, 30 Jul 2020 09:25:54 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14", + "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": [ "254" ], - "x-ms-client-request-id": [ "d6c16298-f68d-4f0a-8cd5-8ee1dc7bd7f2" ], + "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/e04cf476-9ca9-4444-89ec-f93ebbba319c?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/e04cf476-9ca9-4444-89ec-f93ebbba319c?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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/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": [ "30a9ee9b-cecd-4ed3-b537-dce98fc72b4e" ], - "x-ms-correlation-request-id": [ "30a9ee9b-cecd-4ed3-b537-dce98fc72b4e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092555Z:30a9ee9b-cecd-4ed3-b537-dce98fc72b4e" ], + "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, 30 Jul 2020 09:25:54 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/e04cf476-9ca9-4444-89ec-f93ebbba319c?api-version=2020-06-14+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/e04cf476-9ca9-4444-89ec-f93ebbba319c?api-version=2020-06-14", + "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": [ "254", "255" ], - "x-ms-client-request-id": [ "d6c16298-f68d-4f0a-8cd5-8ee1dc7bd7f2", "d6c16298-f68d-4f0a-8cd5-8ee1dc7bd7f2" ], + "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-correlation-request-id": [ "27e7a4d3-c8ab-48a5-8443-2e63ae68cb2d" ], - "x-ms-request-id": [ "bbe0a836-ad1b-4076-8e68-db347dd61e5f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-routing-request-id": [ "NORTHEUROPE:20200730T092625Z:27e7a4d3-c8ab-48a5-8443-2e63ae68cb2d" ], + "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, 30 Jul 2020 09:26:24 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:50:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "496" ], + "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/e04cf476-9ca9-4444-89ec-f93ebbba319c\",\"name\":\"e04cf476-9ca9-4444-89ec-f93ebbba319c\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:25:55.1487385Z\",\"endTime\":\"2020-07-30T09:25:56.5862172Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"428d58d0-de92-4f7a-b00c-ee393dc600a9\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/e04cf476-9ca9-4444-89ec-f93ebbba319c?api-version=2020-06-14\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/e04cf476-9ca9-4444-89ec-f93ebbba319c?api-version=2020-06-14\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": [ "254", "255", "256" ], - "x-ms-client-request-id": [ "d6c16298-f68d-4f0a-8cd5-8ee1dc7bd7f2", "d6c16298-f68d-4f0a-8cd5-8ee1dc7bd7f2", "d6c16298-f68d-4f0a-8cd5-8ee1dc7bd7f2" ], + "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": [ "abebded0-4e39-4da9-a56d-c1b58ab1f0e2" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "284" ], - "x-ms-correlation-request-id": [ "c902a84e-552a-43b3-ae1b-4f6688e19535" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092626Z:c902a84e-552a-43b3-ae1b-4f6688e19535" ], + "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, 30 Jul 2020 09:26:25 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 d5985d414eb7..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14", + "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": [ "20088739-d691-412e-807b-8880bcda5504" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "2980a323-66b0-434b-a11e-434333eaed71" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092630Z:2980a323-66b0-434b-a11e-434333eaed71" ], + "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, 30 Jul 2020 09:26:29 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf\",\"name\":\"testclusterani9hf\",\"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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "388c56b4-0f11-494e-a7d3-fc8667ea17e4" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "41e915ab-9a24-4cf1-b5a4-5acb5e024353" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092700Z:41e915ab-9a24-4cf1-b5a4-5acb5e024353" ], + "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, 30 Jul 2020 09:27:00 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:50:48 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:26:29.5642538Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "282" ], - "x-ms-request-id": [ "b5e6b79f-8a05-44c4-b401-2cb0af10c76d" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "c03a4d7c-48e9-450b-bfd2-53dfa435da3a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092730Z:c03a4d7c-48e9-450b-bfd2-53dfa435da3a" ], + "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, 30 Jul 2020 09:27:30 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:51:18 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:26:29.5642538Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "281" ], - "x-ms-request-id": [ "0cb41d74-d5f9-459d-a1cc-eb6a4c8f2a57" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "46c4822d-b9a7-47c4-bce4-8ef6509fc5bc" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092801Z:46c4822d-b9a7-47c4-bce4-8ef6509fc5bc" ], + "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, 30 Jul 2020 09:28:01 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:51:48 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:26:29.5642538Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "88e6a897-8031-40f7-be76-a748d0fc829c" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "4cc16ea6-9a3d-412d-81e4-243353233c4c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092831Z:4cc16ea6-9a3d-412d-81e4-243353233c4c" ], + "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, 30 Jul 2020 09:28:31 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:52:19 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:26:29.5642538Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "279" ], - "x-ms-request-id": [ "04f59f39-a02b-4eeb-88d4-09d6ae23d09e" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "7d841702-a2b3-413e-adcf-4faefde54f75" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092901Z:7d841702-a2b3-413e-adcf-4faefde54f75" ], + "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, 30 Jul 2020 09:29:00 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:52:48 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:26:29.5642538Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "278" ], - "x-ms-request-id": [ "6d6fe576-3b07-49c9-ae58-c5038c0c1c55" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "104c6d36-e44f-4c75-9a6b-be7028610590" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T092931Z:104c6d36-e44f-4c75-9a6b-be7028610590" ], + "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, 30 Jul 2020 09:29:31 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:53:20 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "1043a5c8-90f8-4d54-9f1f-3b61418b56c2" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "44fb8bed-ea30-403d-853e-f8766432eb76" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093002Z:44fb8bed-ea30-403d-853e-f8766432eb76" ], + "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, 30 Jul 2020 09:30:01 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:53:49 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "287" ], - "x-ms-request-id": [ "9665c56a-d962-489d-8424-e49d11085b7d" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "2709b50f-5ca3-4452-9cef-0026311660b7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093032Z:2709b50f-5ca3-4452-9cef-0026311660b7" ], + "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, 30 Jul 2020 09:30:31 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:54:20 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "286" ], - "x-ms-request-id": [ "15ba48dc-7be9-4b58-bdd5-9876c67ba69e" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "8b3fd71b-028a-4495-85e5-13cd10bfca57" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093102Z:8b3fd71b-028a-4495-85e5-13cd10bfca57" ], + "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, 30 Jul 2020 09:31:02 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:54:50 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "d8785c94-7fd0-4e44-9461-960ceb79860d" ], - "x-ms-request-id": [ "4fdbe709-86a8-4990-80b6-5b7c8bb85549" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "NORTHEUROPE:20200730T093132Z:d8785c94-7fd0-4e44-9461-960ceb79860d" ], + "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, 30 Jul 2020 09:31:32 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:55:20 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "284" ], - "x-ms-request-id": [ "6b0ead09-45e0-44bd-9d72-1b92f8d1f063" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "8690f8d9-1078-4638-b3b1-61c93927c1db" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093203Z:8690f8d9-1078-4638-b3b1-61c93927c1db" ], + "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, 30 Jul 2020 09:32:03 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:55:51 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "283" ], - "x-ms-request-id": [ "9f55ea6d-c6f6-443a-a589-6d07bc3a1f44" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "372abaff-acd8-4a16-a19e-b9162b5a7343" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093233Z:372abaff-acd8-4a16-a19e-b9162b5a7343" ], + "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, 30 Jul 2020 09:32:33 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:56:20 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "ef40115b-64a3-4243-9bb3-6468468b7037" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "6349684f-7357-4396-9af2-21eaa5e6b2cd" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093303Z:6349684f-7357-4396-9af2-21eaa5e6b2cd" ], + "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, 30 Jul 2020 09:33:03 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:56:51 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "281" ], - "x-ms-request-id": [ "97738800-4e0e-4d3f-ab07-f20594ce1661" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "b5853bb1-4604-4c65-b8d8-9e198165d60c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093334Z:b5853bb1-4604-4c65-b8d8-9e198165d60c" ], + "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, 30 Jul 2020 09:33:33 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:57:21 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "280" ], - "x-ms-request-id": [ "298e4f3f-3ee2-428d-ad41-fedeabc746ed" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "ed27f532-f3bb-4cbe-a5ab-da56dd197c53" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093404Z:ed27f532-f3bb-4cbe-a5ab-da56dd197c53" ], + "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, 30 Jul 2020 09:34:03 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:57:52 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "378ab97b-63d3-43f1-96d8-f5b5b23a2327" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "bad6ced0-2e9b-40f0-a6ec-1aad66e5233e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093434Z:bad6ced0-2e9b-40f0-a6ec-1aad66e5233e" ], + "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, 30 Jul 2020 09:34:34 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:58:21 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "289" ], - "x-ms-request-id": [ "ca1664cb-2b0b-4d38-8070-e11e3484c3b8" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "246f8555-ae11-41bb-94e9-41f80da6bbe7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093504Z:246f8555-ae11-41bb-94e9-41f80da6bbe7" ], + "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, 30 Jul 2020 09:35:04 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:58:52 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "288" ], - "x-ms-request-id": [ "84e8049a-e0b8-4bfd-bec8-78afd6a52186" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "e773b594-3254-4178-be5f-e641bd7b3191" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093535Z:e773b594-3254-4178-be5f-e641bd7b3191" ], + "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, 30 Jul 2020 09:35:34 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:59:22 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "fd2b0a85-8646-4e41-82d6-10262b938d78" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "9ab0cb30-c53f-445c-93ce-8d024499b0e2" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093605Z:9ab0cb30-c53f-445c-93ce-8d024499b0e2" ], + "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, 30 Jul 2020 09:36:04 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:59:52 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "286" ], - "x-ms-request-id": [ "723a3be5-80ae-4764-9d53-26ef62d4f7ab" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "21f1b63f-4afe-458f-9bff-d98a7f6db1ab" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093635Z:21f1b63f-4afe-458f-9bff-d98a7f6db1ab" ], + "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, 30 Jul 2020 09:36:34 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:00:23 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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-correlation-request-id": [ "02016e71-5423-4510-b299-76638e351246" ], - "x-ms-request-id": [ "2c5f76d6-d48a-4018-82fc-0390676ec9e9" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-routing-request-id": [ "NORTHEUROPE:20200730T093705Z:02016e71-5423-4510-b299-76638e351246" ], + "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, 30 Jul 2020 09:37:05 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:00:53 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "80f0bf61-fda4-4d72-b79a-7027e00a3128" ], + "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-correlation-request-id": [ "394a853a-043f-4a3a-b438-6c705fbe2c75" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093736Z:394a853a-043f-4a3a-b438-6c705fbe2c75" ], + "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, 30 Jul 2020 09:37:35 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:01:23 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "283" ], - "x-ms-request-id": [ "1e44c5a4-c553-4c25-a6db-a8d7dcfabf33" ], + "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": [ "95ed62fb-7fd7-4adf-b234-7c91301b9533" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093806Z:95ed62fb-7fd7-4adf-b234-7c91301b9533" ], + "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, 30 Jul 2020 09:38:06 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:01:54 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281" ], - "x-ms-client-request-id": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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": [ "282" ], - "x-ms-request-id": [ "1fc33979-8004-4272-9fb5-4828d54d200c" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "2f985fdb-3a51-4842-9977-bbdf930a5915" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093836Z:2f985fdb-3a51-4842-9977-bbdf930a5915" ], + "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, 30 Jul 2020 09:38:36 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:02:23 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "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": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "369f8fcc-b3ad-4f22-8924-9743839adf1d" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "f246cb4f-8139-43fe-be49-d72b8b126c5b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093907Z:f246cb4f-8139-43fe-be49-d72b8b126c5b" ], + "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, 30 Jul 2020 09:39:07 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:02:54 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+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/providers/Microsoft.Kusto/locations/East%20US/operationResults/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "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": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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" ], @@ -1084,32 +1084,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "5c7af07c-87de-49b9-b925-cf4b5414fd24" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "e5a4f8f1-b088-44bb-bd78-df47de0a10d3" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T093937Z:e5a4f8f1-b088-44bb-bd78-df47de0a10d3" ], + "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": [ "Thu, 30 Jul 2020 09:39:36 GMT" ] + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+28": { + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "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": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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" ], @@ -1125,32 +1125,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "0cdce7eb-d8fb-4215-ac49-66e6437674f7" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "fe70f0f1-096a-44cf-b94c-2e0540dfaaf1" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094007Z:fe70f0f1-096a-44cf-b94c-2e0540dfaaf1" ], + "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": [ "Thu, 30 Jul 2020 09:40:06 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:03:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:29:08.7260151Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/providers/Microsoft.Kusto/locations/East US/operationResults/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14+29": { + "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/providers/Microsoft.Kusto/locations/East%20US/operationResults/4a5d0b69-6326-4d20-bf82-f6bb10b13707?api-version=2020-06-14", + "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": [ "257", "258", "259", "260", "261", "262", "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": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], + "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" ], @@ -1160,47 +1160,6 @@ "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": [ "bd54e191-f1f3-4780-b137-0a84a4e82fc7" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5dd8c1f6-a654-4949-b6e2-d3977c577a34" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094038Z:5dd8c1f6-a654-4949-b6e2-d3977c577a34" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:40:37 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/4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"name\":\"4a5d0b69-6326-4d20-bf82-f6bb10b13707\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:26:29.5642538Z\",\"endTime\":\"2020-07-30T09:40:16.3652451Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"6b5eb010-e4c1-4a96-883e-281a770f2768\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" - } - }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14+30": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "257", "258", "259", "260", "261", "262", "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": [ "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7", "2625ea7f-064b-41e3-abbf-4628d2a0c0b7" ], - "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", "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", "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", "__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": { @@ -1209,31 +1168,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "d8570cef-a414-4aa1-838c-82936b70a833" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "b23d99a4-6bc2-424f-baf3-b563f9d7617d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094038Z:b23d99a4-6bc2-424f-baf3-b563f9d7617d" ], + "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, 30 Jul 2020 09:40:37 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:03:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf\",\"name\":\"testclusterani9hf\",\"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://testclusterani9hf.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterani9hf.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14+31": { + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14", + "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": [ "287" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "x-ms-unique-id": [ "293" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1248,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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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/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": [ "9f533389-0f4d-4821-8c9b-1965731dce28" ], - "x-ms-correlation-request-id": [ "9f533389-0f4d-4821-8c9b-1965731dce28" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094038Z:9f533389-0f4d-4821-8c9b-1965731dce28" ], + "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, 30 Jul 2020 09:40:38 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:03:55 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1267,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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1290,32 +1249,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "6dd1d899-cb36-48ce-8d16-1d1306355b13" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "201936e6-4bae-48a0-86be-5347d96cae98" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094109Z:201936e6-4bae-48a0-86be-5347d96cae98" ], + "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, 30 Jul 2020 09:41:08 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:04:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1331,32 +1290,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "8e8cb1c7-9596-48dc-9ceb-cfc894399cc7" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "2c4c18db-8577-4010-aef5-a45cc116bd02" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094139Z:2c4c18db-8577-4010-aef5-a45cc116bd02" ], + "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, 30 Jul 2020 09:41:39 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:04:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289", "290" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1372,32 +1331,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "c4b6a589-ffab-4ae6-99b1-5239b2f7d822" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "d8892742-3ea7-4363-bec9-47e9e78ad833" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094209Z:d8892742-3ea7-4363-bec9-47e9e78ad833" ], + "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, 30 Jul 2020 09:42:09 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:05:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289", "290", "291" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1413,32 +1372,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "cc0ccc22-8c4e-43e6-be8d-819c981c787c" ], - "x-ms-request-id": [ "29a7995f-824e-4caa-8e37-dbf2583caabb" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-routing-request-id": [ "NORTHEUROPE:20200730T094239Z:cc0ccc22-8c4e-43e6-be8d-819c981c787c" ], + "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, 30 Jul 2020 09:42:39 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:05:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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+35": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289", "290", "291", "292" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1454,32 +1413,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "de893a41-0579-4320-b857-fcfc77914218" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "11268f3a-dc5e-4690-a3b8-c52ea4c53996" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094310Z:11268f3a-dc5e-4690-a3b8-c52ea4c53996" ], + "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, 30 Jul 2020 09:43:10 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:06:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289", "290", "291", "292", "293" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1495,32 +1454,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "373f0f46-dc9e-4816-aa04-2dfd5624a2d7" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "ee12a88d-6eb5-4bbe-9796-d7a0978930b8" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094340Z:ee12a88d-6eb5-4bbe-9796-d7a0978930b8" ], + "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, 30 Jul 2020 09:43:39 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:06:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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+37": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289", "290", "291", "292", "293", "294" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1536,32 +1495,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "89a1967c-118a-45b8-a46c-9ec959214162" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "d6f95e92-ca53-4852-9f6c-e5a118fc0004" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094411Z:d6f95e92-ca53-4852-9f6c-e5a118fc0004" ], + "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, 30 Jul 2020 09:44:10 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:07:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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+38": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1577,32 +1536,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "4655871a-8f7b-49ea-939b-7e2ad9af72da" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "edc4b40b-1fad-4e26-b30c-083f4fd0987f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094441Z:edc4b40b-1fad-4e26-b30c-083f4fd0987f" ], + "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, 30 Jul 2020 09:44:40 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:07:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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+39": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1618,32 +1577,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "1e082223-e48f-4ca0-9b4f-2a670c7d06ba" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "466a54ed-4650-4f39-acd6-9a7e5a4a036e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094511Z:466a54ed-4650-4f39-acd6-9a7e5a4a036e" ], + "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, 30 Jul 2020 09:45:11 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:08:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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+40": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1659,32 +1618,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "0675e2f6-be4d-4240-af83-8aae3e77b6cd" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "2754f8fa-23a0-4eae-b5ea-a42291f6768e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094541Z:2754f8fa-23a0-4eae-b5ea-a42291f6768e" ], + "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, 30 Jul 2020 09:45:41 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:08:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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+41": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1700,32 +1659,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "7b7fed6d-28a5-4be5-867a-9757b42e0dae" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "9c7f7f0a-e3de-48fa-ac70-bda6fa4481f1" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094612Z:9c7f7f0a-e3de-48fa-ac70-bda6fa4481f1" ], + "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, 30 Jul 2020 09:46:11 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:09:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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+42": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1741,32 +1700,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "0bdd0e3f-51b0-4d56-8f0c-c033d1fcd4a8" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "d36d3593-e154-4771-9837-231ed91d3e13" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094642Z:d36d3593-e154-4771-9837-231ed91d3e13" ], + "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, 30 Jul 2020 09:46:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:09:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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+43": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1782,32 +1741,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "8785eadd-010f-4559-b798-1eb02b4f26c3" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "80c05bcb-95e5-4383-a67c-745e293dcc31" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094712Z:80c05bcb-95e5-4383-a67c-745e293dcc31" ], + "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, 30 Jul 2020 09:47:12 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:10:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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+44": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300", "301" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1823,32 +1782,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "541924e0-8254-4047-b507-c8cbcdce35e5" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "638e3bdf-de4d-4e45-b551-30c50d98cde6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094742Z:638e3bdf-de4d-4e45-b551-30c50d98cde6" ], + "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, 30 Jul 2020 09:47:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:11:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+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+45": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300", "301", "302" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1864,32 +1823,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "2062b937-cc5e-4263-b9e3-ffc890ad4843" ], - "x-ms-request-id": [ "93eb05d2-aaff-45f5-8ef6-d6ded6d058d0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-routing-request-id": [ "NORTHEUROPE:20200730T094813Z:2062b937-cc5e-4263-b9e3-ffc890ad4843" ], + "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, 30 Jul 2020 09:48:13 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:11:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+47": { + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1905,32 +1864,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "08103863-4f08-4179-b094-6f1470a25887" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "f113f1eb-6604-46d9-9ddf-d8cfc99e60a9" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094843Z:f113f1eb-6604-46d9-9ddf-d8cfc99e60a9" ], + "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, 30 Jul 2020 09:48:43 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:12:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+48": { + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1946,32 +1905,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "16aedab7-f0d5-400e-b63f-5b14fe9e6103" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "ac705165-81d4-4fff-a6e0-ef5a822a4223" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T094913Z:ac705165-81d4-4fff-a6e0-ef5a822a4223" ], + "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, 30 Jul 2020 09:49:13 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:12:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "491" ], + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+49": { + "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", + "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": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304", "305" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], + "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" ], @@ -1986,97 +1945,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], - "x-ms-request-id": [ "51714f7b-05e9-4465-80d2-a0261bac5eaa" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5c323fac-63e5-4478-8f2b-1be53dac0e95" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095000Z:5c323fac-63e5-4478-8f2b-1be53dac0e95" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:50:00 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "491" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:40:39.7584145Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14+50": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304", "305", "306" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], - "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": [ "289" ], - "x-ms-request-id": [ "b5288ce3-c973-4514-b058-809a55ba6e1c" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b51b112b-e975-45d5-8d4a-92c97c0fc9ed" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095034Z:b51b112b-e975-45d5-8d4a-92c97c0fc9ed" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 09:50:33 GMT" ] - }, - "ContentHeaders": { - "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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"name\":\"2ce8b7d5-8c5e-45dc-861d-c72fa62de47a\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:40:38.883293Z\",\"endTime\":\"2020-07-30T09:50:15.4865857Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"f10951c5-5e0b-4b48-a833-1d0f261f5d30\",\"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/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14\u0026operationResultResponseType=Location+51": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce8b7d5-8c5e-45dc-861d-c72fa62de47a?api-version=2020-06-14\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304", "305", "306", "307" ], - "x-ms-client-request-id": [ "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64", "7cc96210-d5ee-485f-8f91-b218183c7a64" ], - "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" ], - "x-ms-request-id": [ "34be4d8e-2af2-4f46-a248-0108c5c00df0" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "288" ], - "x-ms-correlation-request-id": [ "8f4d55a1-1e5a-4e6c-8fe8-795e12e3099c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095034Z:8f4d55a1-1e5a-4e6c-8fe8-795e12e3099c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "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, 30 Jul 2020 09:50:33 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 ece39034ae58..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "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": [ "5cc7e2aa-a432-4e69-a885-c533cd3e8756" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e846520-875c-43d0-96e5-f7286ee00848?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "b46a764b-88da-44a5-b394-db2f53f766d7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095035Z:b46a764b-88da-44a5-b394-db2f53f766d7" ], + "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, 30 Jul 2020 09:50:34 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/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/2e846520-875c-43d0-96e5-f7286ee00848?api-version=2020-06-14+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/2e846520-875c-43d0-96e5-f7286ee00848?api-version=2020-06-14", + "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": [ "308", "309" ], - "x-ms-client-request-id": [ "38929b08-87a5-40ff-a541-7136072c5512", "38929b08-87a5-40ff-a541-7136072c5512" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "08840d5f-0b37-4716-80fe-785e299f9577" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "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-correlation-request-id": [ "9455ef9d-4b50-448a-a0a4-6881d61a7c28" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095105Z:9455ef9d-4b50-448a-a0a4-6881d61a7c28" ], + "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, 30 Jul 2020 09:51:05 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:13:10 GMT" ] }, "ContentHeaders": { "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/2e846520-875c-43d0-96e5-f7286ee00848\",\"name\":\"2e846520-875c-43d0-96e5-f7286ee00848\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:50:35.2983315Z\",\"endTime\":\"2020-07-30T09:50:37.2672254Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsAdd\",\"RootActivityId\":\"c8c4eec5-1099-4791-a893-4a50b31f3cdd\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "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": [ "308", "309", "310" ], - "x-ms-client-request-id": [ "38929b08-87a5-40ff-a541-7136072c5512", "38929b08-87a5-40ff-a541-7136072c5512", "38929b08-87a5-40ff-a541-7136072c5512" ], + "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": [ "01ca0e06-74cf-4cbc-87fc-607a523a8e2b" ], + "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": [ "062ad064-6078-4249-8654-a1e35a9cf452" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095106Z:062ad064-6078-4249-8654-a1e35a9cf452" ], + "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, 30 Jul 2020 09:51:06 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "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": [ "311" ], - "x-ms-client-request-id": [ "d62d2dd8-b8b8-4253-b8dd-d278359e0c47" ], + "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/0a59d4eb-52a5-4579-bd60-8988684b7e61?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/0a59d4eb-52a5-4579-bd60-8988684b7e61?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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/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": [ "d3768e33-8c4e-45d0-9547-37030b905c25" ], - "x-ms-correlation-request-id": [ "d3768e33-8c4e-45d0-9547-37030b905c25" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095106Z:d3768e33-8c4e-45d0-9547-37030b905c25" ], + "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, 30 Jul 2020 09:51:06 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/0a59d4eb-52a5-4579-bd60-8988684b7e61?api-version=2020-06-14+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/0a59d4eb-52a5-4579-bd60-8988684b7e61?api-version=2020-06-14", + "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": [ "311", "312" ], - "x-ms-client-request-id": [ "d62d2dd8-b8b8-4253-b8dd-d278359e0c47", "d62d2dd8-b8b8-4253-b8dd-d278359e0c47" ], + "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" ], @@ -183,32 +183,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "d89ef632-1b05-4266-a701-e85c4148a23a" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "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": [ "bee385a4-7cd3-4682-9a45-319edde0f37a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095136Z:bee385a4-7cd3-4682-9a45-319edde0f37a" ], + "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, 30 Jul 2020 09:51:36 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:13:53 GMT" ] }, "ContentHeaders": { "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/0a59d4eb-52a5-4579-bd60-8988684b7e61\",\"name\":\"0a59d4eb-52a5-4579-bd60-8988684b7e61\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:51:06.5844523Z\",\"endTime\":\"2020-07-30T09:51:08.7877268Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsDrop\",\"RootActivityId\":\"38d4aef8-0cb9-4219-a207-230b759c81c2\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/0a59d4eb-52a5-4579-bd60-8988684b7e61?api-version=2020-06-14\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/0a59d4eb-52a5-4579-bd60-8988684b7e61?api-version=2020-06-14\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": [ "311", "312", "313" ], - "x-ms-client-request-id": [ "d62d2dd8-b8b8-4253-b8dd-d278359e0c47", "d62d2dd8-b8b8-4253-b8dd-d278359e0c47", "d62d2dd8-b8b8-4253-b8dd-d278359e0c47" ], + "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": [ "f15cc4fc-52cd-4fe8-9572-6f8ef6f589f7" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "285" ], - "x-ms-correlation-request-id": [ "387eb4d4-e3ca-4f85-997d-47d5ce10e825" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095137Z:387eb4d4-e3ca-4f85-997d-47d5ce10e825" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "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, 30 Jul 2020 09:51:36 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 842057f9b4b6..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14", + "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": [ "332" ], - "x-ms-client-request-id": [ "33a1d052-9841-42b7-9426-9ab73d6f87a4" ], + "x-ms-unique-id": [ "336" ], + "x-ms-client-request-id": [ "0ec474b8-3b0a-4feb-a2bf-a992647bb53a" ], "CommandName": [ "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -17,36 +17,119 @@ } }, "Response": { - "StatusCode": 204, + "StatusCode": 202, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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/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": [ "3e8cb544-96fd-4909-a096-fbb975a70313" ], - "x-ms-correlation-request-id": [ "3e8cb544-96fd-4909-a096-fbb975a70313" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095446Z:3e8cb544-96fd-4909-a096-fbb975a70313" ], + "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": [ "Mon, 03 Aug 2020 00:18:08 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/814eb7a2-96d1-4a16-9371-c5fa22e11545?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "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-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, 30 Jul 2020 09:54:45 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:18:39 GMT" ] }, "ContentHeaders": { + "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/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/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/814eb7a2-96d1-4a16-9371-c5fa22e11545?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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" ], + "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" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:18:39 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, "Content": null } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14+2": { + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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 \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubns5arkid/eventhubs/eventhub5arkid\",\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": { @@ -55,33 +138,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "d7e77a40-a27f-4b5f-b6bc-d570448d9fda" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8ddc582c-18b6-470d-8684-a1b17ec87d45?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "0971abef-549d-417a-a1e3-975a99c1b46a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095447Z:0971abef-549d-417a-a1e3-975a99c1b46a" ], + "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, 30 Jul 2020 09:54:46 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid/testdataconnection5arkid\",\"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/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubns5arkid/eventhubs/eventhub5arkid\",\"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/8ddc582c-18b6-470d-8684-a1b17ec87d45?api-version=2020-06-14+3": { + "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/8ddc582c-18b6-470d-8684-a1b17ec87d45?api-version=2020-06-14", + "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": [ "333", "334" ], - "x-ms-client-request-id": [ "4cf0c831-743c-4902-8c25-109065c1c6df", "4cf0c831-743c-4902-8c25-109065c1c6df" ], + "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" ], @@ -97,32 +180,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "eaa7510f-452a-4c5b-9fec-3a1c3b7de087" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "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": [ "9e0904d2-2c40-488f-af30-497ee23bd055" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095518Z:9e0904d2-2c40-488f-af30-497ee23bd055" ], + "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, 30 Jul 2020 09:55:17 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:19:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "621" ], + "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/8ddc582c-18b6-470d-8684-a1b17ec87d45\",\"name\":\"8ddc582c-18b6-470d-8684-a1b17ec87d45\",\"status\":\"Failed\",\"startTime\":\"2020-07-30T09:54:47.6418353Z\",\"endTime\":\"2020-07-30T09:54:50.2375264Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"e22a5d21-13a0-4f39-92ef-99cec931fcc6\",\"provisioningState\":\"Failed\",\"OperationState\":\"BadInput\"},\"error\":{\"code\":\"EventHubValidationErorFound\",\"message\":\"[BadRequest] Validation Errors found: table does not exist\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14+4": { + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14", + "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": [ "333", "334", "335" ], - "x-ms-client-request-id": [ "4cf0c831-743c-4902-8c25-109065c1c6df", "4cf0c831-743c-4902-8c25-109065c1c6df", "4cf0c831-743c-4902-8c25-109065c1c6df" ], + "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" ], @@ -133,36 +216,38 @@ } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "41bba4c8-5c69-4bd6-b301-dec4e7eabaae" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], + "ETag": [ "\"\"" ], + "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-correlation-request-id": [ "fbe68276-a325-4d64-82d1-10d9d828c6fe" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095518Z:fbe68276-a325-4d64-82d1-10d9d828c6fe" ], + "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": [ "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, 30 Jul 2020 09:55:18 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:19:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "300" ], + "Content-Length": [ "770" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid\u0027 is not found.\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?api-version=2020-06-14", + "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": [ "336" ], - "x-ms-client-request-id": [ "ab3c7d88-9dae-40c4-9fe0-6bb0d572f730" ], + "x-ms-unique-id": [ "342" ], + "x-ms-client-request-id": [ "0eab4733-3d54-491c-a8ae-0f35292f15aa" ], "CommandName": [ "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -173,36 +258,119 @@ } }, "Response": { - "StatusCode": 204, + "StatusCode": 202, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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/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": [ "42d009b2-b51f-40e4-8e00-57c88517c7b0" ], - "x-ms-correlation-request-id": [ "42d009b2-b51f-40e4-8e00-57c88517c7b0" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095519Z:42d009b2-b51f-40e4-8e00-57c88517c7b0" ], + "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": [ "Mon, 03 Aug 2020 00:19:47 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/7e590f1c-b01c-4637-b476-638d5446a0b3?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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-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-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, 30 Jul 2020 09:55:18 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:20:17 GMT" ] }, "ContentHeaders": { + "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/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/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/7e590f1c-b01c-4637-b476-638d5446a0b3?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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" ], + "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" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:20:18 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, "Content": null } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?api-version=2020-06-14+2": { + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?api-version=2020-06-14", - "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/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubnsgridkgb956/eventhubs/eventgridkgb956\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Storage/storageAccounts/storage5arkid\",\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": { @@ -211,33 +379,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "1acf7d28-cbb9-42e1-87aa-394ad45a2a9f" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/abcbd330-a7f7-4fe0-9d67-9ec80ad6c339?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "7ca12043-ffe6-4f0f-ae6b-70550483f28c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095520Z:7ca12043-ffe6-4f0f-ae6b-70550483f28c" ], + "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, 30 Jul 2020 09:55:20 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg\",\"name\":\"testcluster5arkid/testdatabase5arkid/testdataconnection5arkidg\",\"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/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubnsgridkgb956/eventhubs/eventgridkgb956\",\"mappingRuleName\":\"EventsMapping\",\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Storage/storageAccounts/storage5arkid\",\"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/abcbd330-a7f7-4fe0-9d67-9ec80ad6c339?api-version=2020-06-14+3": { + "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/abcbd330-a7f7-4fe0-9d67-9ec80ad6c339?api-version=2020-06-14", + "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": [ "337", "338" ], - "x-ms-client-request-id": [ "c977e19d-0b7b-4708-9c91-af5386465c26", "c977e19d-0b7b-4708-9c91-af5386465c26" ], + "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" ], @@ -253,32 +421,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "65cb362f-1628-4638-baea-26888287014e" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "f1d17264-ec6e-47ca-a346-9bc874c6085e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095550Z:f1d17264-ec6e-47ca-a346-9bc874c6085e" ], + "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, 30 Jul 2020 09:55:50 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:20:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "629" ], + "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/abcbd330-a7f7-4fe0-9d67-9ec80ad6c339\",\"name\":\"abcbd330-a7f7-4fe0-9d67-9ec80ad6c339\",\"status\":\"Failed\",\"startTime\":\"2020-07-30T09:55:20.4613401Z\",\"endTime\":\"2020-07-30T09:55:22.1020629Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventGridIngestionSourceAdd\",\"RootActivityId\":\"9a3b9ad2-aa8b-43d0-ab06-2570dc4d6883\",\"provisioningState\":\"Failed\",\"OperationState\":\"BadInput\"},\"error\":{\"code\":\"EventHubValidationErorFound\",\"message\":\"[BadRequest] Validation Errors found: table does not exist\"}}" + "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/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?api-version=2020-06-14+4": { + "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/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?api-version=2020-06-14", + "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": [ "337", "338", "339" ], - "x-ms-client-request-id": [ "c977e19d-0b7b-4708-9c91-af5386465c26", "c977e19d-0b7b-4708-9c91-af5386465c26", "c977e19d-0b7b-4708-9c91-af5386465c26" ], + "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" ], @@ -289,36 +457,79 @@ } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f24477f8-9bcc-4aae-b4cd-fd8addc27112" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "Vary": [ "Accept-Encoding" ], + "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-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": [ "Mon, 03 Aug 2020 00:21:20 GMT" ] + }, + "ContentHeaders": { + "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/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/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/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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" ], + "ETag": [ "\"\"" ], + "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-correlation-request-id": [ "fce50125-486a-4ddd-b88b-450df5fcf252" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095551Z:fce50125-486a-4ddd-b88b-450df5fcf252" ], + "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": [ "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, 30 Jul 2020 09:55:50 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:21:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "301" ], + "Content-Length": [ "960" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg\u0027 is not found.\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?api-version=2020-06-14", + "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": [ "340" ], - "x-ms-client-request-id": [ "86a5d098-d7c6-411f-a1e2-328381eb316e" ], + "x-ms-unique-id": [ "349" ], + "x-ms-client-request-id": [ "9ea5d9ee-3150-4118-a366-34dd670d517f" ], "CommandName": [ "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -329,36 +540,119 @@ } }, "Response": { - "StatusCode": 204, + "StatusCode": 202, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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/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": [ "05909745-330a-454c-9a83-42554fbc3cb8" ], - "x-ms-correlation-request-id": [ "05909745-330a-454c-9a83-42554fbc3cb8" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095552Z:05909745-330a-454c-9a83-42554fbc3cb8" ], + "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": [ "Mon, 03 Aug 2020 00:21:21 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/52158415-4c7c-4b55-bc17-276c784c6f9b?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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-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": [ "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, 30 Jul 2020 09:55:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:21:51 GMT" ] }, "ContentHeaders": { + "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/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/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/52158415-4c7c-4b55-bc17-276c784c6f9b?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "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" ], + "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" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:21:51 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, "Content": null } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedIotHub+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?api-version=2020-06-14+2": { + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?api-version=2020-06-14", - "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/testgroup5arkid/providers/Microsoft.Devices/IotHubs/iothub5arkid\",\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": { @@ -367,33 +661,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "5f34fcf5-5bf9-469c-981c-b2b25d064bc1" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7b70abd5-a568-44e2-aa87-0dd9d307f81e?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "42cbc4e2-f442-4735-95fb-a8572989d27a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095553Z:42cbc4e2-f442-4735-95fb-a8572989d27a" ], + "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, 30 Jul 2020 09:55:52 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh\",\"name\":\"testcluster5arkid/testdatabase5arkid/testdataconnection5arkidh\",\"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/testgroup5arkid/providers/Microsoft.Devices/IotHubs/iothub5arkid\",\"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/7b70abd5-a568-44e2-aa87-0dd9d307f81e?api-version=2020-06-14+3": { + "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/7b70abd5-a568-44e2-aa87-0dd9d307f81e?api-version=2020-06-14", + "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": [ "341", "342" ], - "x-ms-client-request-id": [ "d7a353fb-4ebe-4d47-8d08-355242e54f09", "d7a353fb-4ebe-4d47-8d08-355242e54f09" ], + "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" ], @@ -410,31 +704,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "0892b589-6bcc-4eb7-ad0b-5ff55f523e21" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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-correlation-request-id": [ "2685f4c3-2fff-4768-b1e1-be51bc59fa5e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095623Z:2685f4c3-2fff-4768-b1e1-be51bc59fa5e" ], + "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, 30 Jul 2020 09:56:23 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:22:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "561" ], + "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/7b70abd5-a568-44e2-aa87-0dd9d307f81e\",\"name\":\"7b70abd5-a568-44e2-aa87-0dd9d307f81e\",\"status\":\"Failed\",\"startTime\":\"2020-07-30T09:55:53.3388256Z\",\"endTime\":\"2020-07-30T09:55:53.4482136Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"8a0d91bb-b615-4f7f-91cc-585d9e85977c\",\"provisioningState\":\"Failed\",\"OperationState\":\"Failed\"},\"error\":{\"code\":\"Failed\",\"message\":\"Internal Server Error\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?api-version=2020-06-14+4": { + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?api-version=2020-06-14", + "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": [ "341", "342", "343" ], - "x-ms-client-request-id": [ "d7a353fb-4ebe-4d47-8d08-355242e54f09", "d7a353fb-4ebe-4d47-8d08-355242e54f09", "d7a353fb-4ebe-4d47-8d08-355242e54f09" ], + "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" ], @@ -445,26 +739,28 @@ } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a382934c-2b81-4cbd-bd39-2525a5dcfa78" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], + "ETag": [ "\"\"" ], + "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-correlation-request-id": [ "69ba8e13-fe00-4d07-bae7-8431f2090c6b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095624Z:69ba8e13-fe00-4d07-bae7-8431f2090c6b" ], + "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": [ "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, 30 Jul 2020 09:56:24 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:22:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "301" ], + "Content-Length": [ "754" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh\u0027 is not found.\"}}" + "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 cbe55d3ebf4d..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14", + "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": [ "c074df42-cffd-4097-a26a-048c0caf252e" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/88ca1942-b61a-47a8-ab3a-3b607b749e89?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "257466eb-d1cd-4a73-8bdf-c4426dff9fbe" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095138Z:257466eb-d1cd-4a73-8bdf-c4426dff9fbe" ], + "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, 30 Jul 2020 09:51:37 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf\",\"name\":\"testcluster5arkid/testdatabaseani9hf\",\"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/88ca1942-b61a-47a8-ab3a-3b607b749e89?api-version=2020-06-14+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/88ca1942-b61a-47a8-ab3a-3b607b749e89?api-version=2020-06-14", + "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": [ "314", "315" ], - "x-ms-client-request-id": [ "c3d8e85f-c2d3-44ce-aced-354f70137e57", "c3d8e85f-c2d3-44ce-aced-354f70137e57" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "da592509-20a3-4a79-8600-27d0b1ccd2b0" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "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-correlation-request-id": [ "3c3d6267-1fee-4491-a842-b40616f19940" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095208Z:3c3d6267-1fee-4491-a842-b40616f19940" ], + "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, 30 Jul 2020 09:52:07 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:14:34 GMT" ] }, "ContentHeaders": { "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/88ca1942-b61a-47a8-ab3a-3b607b749e89\",\"name\":\"88ca1942-b61a-47a8-ab3a-3b607b749e89\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:51:38.0455807Z\",\"endTime\":\"2020-07-30T09:51:40.3113747Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"ef0579a6-3942-4e51-a021-25286a03fa9b\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14", + "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": [ "314", "315", "316" ], - "x-ms-client-request-id": [ "c3d8e85f-c2d3-44ce-aced-354f70137e57", "c3d8e85f-c2d3-44ce-aced-354f70137e57", "c3d8e85f-c2d3-44ce-aced-354f70137e57" ], + "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": [ "3099c3fd-2544-4633-92be-f2ff6bee8db4" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "0262d6c2-44f0-41fe-9f5e-974cc7ee5513" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095208Z:0262d6c2-44f0-41fe-9f5e-974cc7ee5513" ], + "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, 30 Jul 2020 09:52:07 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf\",\"name\":\"testcluster5arkid/testdatabaseani9hf\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14", + "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": [ "317" ], - "x-ms-client-request-id": [ "29165b2a-edf9-4c0e-a11b-176fa3b5f398" ], + "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/8d3c742e-e532-44c7-ae21-3c8e630ff0ad?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/8d3c742e-e532-44c7-ae21-3c8e630ff0ad?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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/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": [ "03b5a18d-ec3b-4a01-bc1b-30d6803d6db7" ], - "x-ms-correlation-request-id": [ "03b5a18d-ec3b-4a01-bc1b-30d6803d6db7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095209Z:03b5a18d-ec3b-4a01-bc1b-30d6803d6db7" ], + "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, 30 Jul 2020 09:52:08 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/8d3c742e-e532-44c7-ae21-3c8e630ff0ad?api-version=2020-06-14+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/8d3c742e-e532-44c7-ae21-3c8e630ff0ad?api-version=2020-06-14", + "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": [ "317", "318" ], - "x-ms-client-request-id": [ "29165b2a-edf9-4c0e-a11b-176fa3b5f398", "29165b2a-edf9-4c0e-a11b-176fa3b5f398" ], + "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": [ "283" ], - "x-ms-request-id": [ "eb1b5a6e-17e0-4be7-b0dd-40a14367d4f0" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "b6631700-21e2-4b95-8636-5340e5d7e527" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095239Z:b6631700-21e2-4b95-8636-5340e5d7e527" ], + "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, 30 Jul 2020 09:52:39 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:15:15 GMT" ] }, "ContentHeaders": { "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/8d3c742e-e532-44c7-ae21-3c8e630ff0ad\",\"name\":\"8d3c742e-e532-44c7-ae21-3c8e630ff0ad\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:52:09.2536575Z\",\"endTime\":\"2020-07-30T09:52:10.8475329Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"e5e72f85-94d1-483a-960f-9e472e28613f\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/8d3c742e-e532-44c7-ae21-3c8e630ff0ad?api-version=2020-06-14\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/8d3c742e-e532-44c7-ae21-3c8e630ff0ad?api-version=2020-06-14\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": [ "317", "318", "319" ], - "x-ms-client-request-id": [ "29165b2a-edf9-4c0e-a11b-176fa3b5f398", "29165b2a-edf9-4c0e-a11b-176fa3b5f398", "29165b2a-edf9-4c0e-a11b-176fa3b5f398" ], + "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": [ "4545c582-fc57-4878-9c2f-eba4efd65daf" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "282" ], - "x-ms-correlation-request-id": [ "0ca2cf63-8b23-4d57-a0ea-2c368c111585" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095239Z:0ca2cf63-8b23-4d57-a0ea-2c368c111585" ], + "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, 30 Jul 2020 09:52:39 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14", + "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": [ "3455ee07-68d1-40c0-bbb0-8b77c3b35cea" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d85b0b81-cf10-4415-ae66-31d364a003c0?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "055f91b8-3a8c-40b9-a638-b25f8e8b8ca4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095240Z:055f91b8-3a8c-40b9-a638-b25f8e8b8ca4" ], + "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, 30 Jul 2020 09:52:39 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj\",\"name\":\"testcluster5arkid/testdatabasev8aetj\",\"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/d85b0b81-cf10-4415-ae66-31d364a003c0?api-version=2020-06-14+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/d85b0b81-cf10-4415-ae66-31d364a003c0?api-version=2020-06-14", + "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": [ "320", "321" ], - "x-ms-client-request-id": [ "f45bdd71-60b6-4164-b5a1-222ed38e2634", "f45bdd71-60b6-4164-b5a1-222ed38e2634" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "907f4002-60c2-4aa1-8202-a421327a01f1" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "f7b835d7-25a7-4f89-aa22-f485df3302cc" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095310Z:f7b835d7-25a7-4f89-aa22-f485df3302cc" ], + "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, 30 Jul 2020 09:53:10 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:15:53 GMT" ] }, "ContentHeaders": { "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/d85b0b81-cf10-4415-ae66-31d364a003c0\",\"name\":\"d85b0b81-cf10-4415-ae66-31d364a003c0\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:52:40.3267987Z\",\"endTime\":\"2020-07-30T09:52:42.3739542Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"061e544c-c86f-4761-8dd1-483f092eeade\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14", + "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": [ "320", "321", "322" ], - "x-ms-client-request-id": [ "f45bdd71-60b6-4164-b5a1-222ed38e2634", "f45bdd71-60b6-4164-b5a1-222ed38e2634", "f45bdd71-60b6-4164-b5a1-222ed38e2634" ], + "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": [ "dd030117-1a3a-40ba-95a6-b032fa0d0acc" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "3040c967-f2d5-4b98-affd-9e606d0bff4c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095311Z:3040c967-f2d5-4b98-affd-9e606d0bff4c" ], + "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, 30 Jul 2020 09:53:11 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj\",\"name\":\"testcluster5arkid/testdatabasev8aetj\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14", + "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": [ "323" ], - "x-ms-client-request-id": [ "efd49044-63b5-4851-a4b8-126548569970" ], + "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/3759a9e2-e7c9-46fd-b824-f26b34aa4c83?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/3759a9e2-e7c9-46fd-b824-f26b34aa4c83?api-version=2020-06-14" ], + "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": [ "edac2aaf-043c-42db-a26f-8064a8177af7" ], - "x-ms-correlation-request-id": [ "edac2aaf-043c-42db-a26f-8064a8177af7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095311Z:edac2aaf-043c-42db-a26f-8064a8177af7" ], + "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, 30 Jul 2020 09:53:11 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/3759a9e2-e7c9-46fd-b824-f26b34aa4c83?api-version=2020-06-14+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/3759a9e2-e7c9-46fd-b824-f26b34aa4c83?api-version=2020-06-14", + "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": [ "323", "324" ], - "x-ms-client-request-id": [ "efd49044-63b5-4851-a4b8-126548569970", "efd49044-63b5-4851-a4b8-126548569970" ], + "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" ], @@ -424,32 +424,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "83910cb5-eb90-4770-8252-6919a958ed69" ], - "x-ms-request-id": [ "063c2ea4-6945-4618-94ad-22e2efc769de" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "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-routing-request-id": [ "NORTHEUROPE:20200730T095341Z:83910cb5-eb90-4770-8252-6919a958ed69" ], + "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, 30 Jul 2020 09:53:41 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:16:32 GMT" ] }, "ContentHeaders": { "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/3759a9e2-e7c9-46fd-b824-f26b34aa4c83\",\"name\":\"3759a9e2-e7c9-46fd-b824-f26b34aa4c83\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:53:11.443531Z\",\"endTime\":\"2020-07-30T09:53:16.9284094Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"4d6d6df7-187f-4c56-a194-6730392b8979\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/3759a9e2-e7c9-46fd-b824-f26b34aa4c83?api-version=2020-06-14\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/3759a9e2-e7c9-46fd-b824-f26b34aa4c83?api-version=2020-06-14\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": [ "323", "324", "325" ], - "x-ms-client-request-id": [ "efd49044-63b5-4851-a4b8-126548569970", "efd49044-63b5-4851-a4b8-126548569970", "efd49044-63b5-4851-a4b8-126548569970" ], + "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": [ "0b410e00-57ca-41ae-814d-3d31e2fc6382" ], + "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": [ "279" ], - "x-ms-correlation-request-id": [ "025dcf0d-db3c-40da-b583-4459ff2eacb3" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095342Z:025dcf0d-db3c-40da-b583-4459ff2eacb3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "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, 30 Jul 2020 09:53:41 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 6c68ed98a282..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "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": [ "2aa4f93e-2c16-414f-a2e5-e510a2a393a0" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ffe31575-d77a-48a1-b6f1-65fe4a5a88e1?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "5be8ae3d-fbad-4ce8-87f2-606dabe57282" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095343Z:5be8ae3d-fbad-4ce8-87f2-606dabe57282" ], + "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, 30 Jul 2020 09:53:42 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/testdatabase5arkid/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/ffe31575-d77a-48a1-b6f1-65fe4a5a88e1?api-version=2020-06-14+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/ffe31575-d77a-48a1-b6f1-65fe4a5a88e1?api-version=2020-06-14", + "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": [ "326", "327" ], - "x-ms-client-request-id": [ "b22a848b-68ca-4813-a127-e336069609cd", "b22a848b-68ca-4813-a127-e336069609cd" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "278" ], - "x-ms-request-id": [ "0b208c7c-e598-4573-a1a8-1e6b18a167af" ], + "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=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "8ec32daf-12e2-4512-abef-df5f8e616774" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095413Z:8ec32daf-12e2-4512-abef-df5f8e616774" ], + "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, 30 Jul 2020 09:54:13 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:17:20 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/ffe31575-d77a-48a1-b6f1-65fe4a5a88e1\",\"name\":\"ffe31575-d77a-48a1-b6f1-65fe4a5a88e1\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:53:43.4622032Z\",\"endTime\":\"2020-07-30T09:53:43.6185123Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseAddPrincipals\",\"RootActivityId\":\"7414b37e-eefd-4cac-8d3d-4f12f2b59a7c\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "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": [ "326", "327", "328" ], - "x-ms-client-request-id": [ "b22a848b-68ca-4813-a127-e336069609cd", "b22a848b-68ca-4813-a127-e336069609cd", "b22a848b-68ca-4813-a127-e336069609cd" ], + "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": [ "bb659897-5dd7-4f3b-8b24-bf9f8800bca7" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "2e598048-bd70-44fd-b5a1-5a451179681e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095414Z:2e598048-bd70-44fd-b5a1-5a451179681e" ], + "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, 30 Jul 2020 09:54:14 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "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": [ "329" ], - "x-ms-client-request-id": [ "50ea84d8-9c02-48e3-a077-7ef432530ff0" ], + "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/ed2edfb6-535f-4d6c-a8a8-ce2d151ed3a1?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/ed2edfb6-535f-4d6c-a8a8-ce2d151ed3a1?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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/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": [ "aa98a532-b9a4-49ee-8746-f6fef6f853ab" ], - "x-ms-correlation-request-id": [ "aa98a532-b9a4-49ee-8746-f6fef6f853ab" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095414Z:aa98a532-b9a4-49ee-8746-f6fef6f853ab" ], + "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, 30 Jul 2020 09:54:14 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/ed2edfb6-535f-4d6c-a8a8-ce2d151ed3a1?api-version=2020-06-14+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/ed2edfb6-535f-4d6c-a8a8-ce2d151ed3a1?api-version=2020-06-14", + "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": [ "329", "330" ], - "x-ms-client-request-id": [ "50ea84d8-9c02-48e3-a077-7ef432530ff0", "50ea84d8-9c02-48e3-a077-7ef432530ff0" ], + "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" ], @@ -183,32 +183,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], - "x-ms-request-id": [ "f7928541-980a-4d4b-a0a4-fbbbabc0bc3c" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "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": [ "46da1698-3e7d-4bcc-9573-d277fe89ecc6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095445Z:46da1698-3e7d-4bcc-9573-d277fe89ecc6" ], + "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, 30 Jul 2020 09:54:44 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:18:00 GMT" ] }, "ContentHeaders": { "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/ed2edfb6-535f-4d6c-a8a8-ce2d151ed3a1\",\"name\":\"ed2edfb6-535f-4d6c-a8a8-ce2d151ed3a1\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:54:14.8263948Z\",\"endTime\":\"2020-07-30T09:54:14.9358214Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDropPrincipals\",\"RootActivityId\":\"a23ccd6d-5a92-40e7-8366-8d9967078106\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/ed2edfb6-535f-4d6c-a8a8-ce2d151ed3a1?api-version=2020-06-14\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/ed2edfb6-535f-4d6c-a8a8-ce2d151ed3a1?api-version=2020-06-14\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": [ "329", "330", "331" ], - "x-ms-client-request-id": [ "50ea84d8-9c02-48e3-a077-7ef432530ff0", "50ea84d8-9c02-48e3-a077-7ef432530ff0", "50ea84d8-9c02-48e3-a077-7ef432530ff0" ], + "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": [ "ea9eb250-0b80-4611-b80d-461395af9e70" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "276" ], - "x-ms-correlation-request-id": [ "e928fef4-a2f7-4b9d-91fc-b6d80af90a26" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095445Z:e928fef4-a2f7-4b9d-91fc-b6d80af90a26" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "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, 30 Jul 2020 09:54:44 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 a7beba124d13..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14", + "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": [ "d09016c3-dc1a-47a3-b1bc-d59871ad4b45" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80376ddb-9278-455a-b2c2-454e5748480f?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "15160a82-7319-4e26-9e12-9cd4d0f90088" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095625Z:15160a82-7319-4e26-9e12-9cd4d0f90088" ], + "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, 30 Jul 2020 09:56:25 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj\",\"name\":\"testcluster5arkid/testdatabasev8aetj\",\"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/80376ddb-9278-455a-b2c2-454e5748480f?api-version=2020-06-14+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/80376ddb-9278-455a-b2c2-454e5748480f?api-version=2020-06-14", + "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": [ "344", "345" ], - "x-ms-client-request-id": [ "a7a66eeb-a019-481a-a5e8-6129389d19b6", "a7a66eeb-a019-481a-a5e8-6129389d19b6" ], + "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-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" ], - "x-ms-request-id": [ "9fd9e021-4ca9-496d-b155-12841aaf07cc" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "6211e8b3-f75c-4731-bfe8-e6347a93ab41" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095659Z:6211e8b3-f75c-4731-bfe8-e6347a93ab41" ], + "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, 30 Jul 2020 09:56:59 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:22:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "495" ], + "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/80376ddb-9278-455a-b2c2-454e5748480f\",\"name\":\"80376ddb-9278-455a-b2c2-454e5748480f\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:56:25.1751951Z\",\"endTime\":\"2020-07-30T09:56:26.940944Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"0bf35f7a-c5a6-4fce-867a-882b355784ca\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14", + "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": [ "344", "345", "346" ], - "x-ms-client-request-id": [ "a7a66eeb-a019-481a-a5e8-6129389d19b6", "a7a66eeb-a019-481a-a5e8-6129389d19b6", "a7a66eeb-a019-481a-a5e8-6129389d19b6" ], + "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": [ "297" ], - "x-ms-request-id": [ "85813faf-fb6d-4834-a077-d11a09f90fee" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "c9666d4f-7360-40a0-b091-a9c16603c55d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095704Z:c9666d4f-7360-40a0-b091-a9c16603c55d" ], + "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, 30 Jul 2020 09:57:03 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj\",\"name\":\"testcluster5arkid/testdatabasev8aetj\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?api-version=2020-06-14", - "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\r\n \"databaseName\": \"testdatabasev8aetj\",\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": [ "eff6f9f5-de08-47d3-a064-d470dbbae3e2" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d68020cb-3b9b-43c2-964b-34b8be7f03a3?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "eb8ae541-a475-4420-9335-c76312892c73" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095706Z:eb8ae541-a475-4420-9335-c76312892c73" ], + "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, 30 Jul 2020 09:57:05 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj\",\"name\":\"testfclusterkgb956/testdbconfv8aetj\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabasev8aetj\",\"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/d68020cb-3b9b-43c2-964b-34b8be7f03a3?api-version=2020-06-14+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/d68020cb-3b9b-43c2-964b-34b8be7f03a3?api-version=2020-06-14", + "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": [ "347", "348" ], - "x-ms-client-request-id": [ "66a58dd2-4252-44db-aa18-446571077227", "66a58dd2-4252-44db-aa18-446571077227" ], + "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" ], @@ -180,31 +180,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "bb8ae187-0c40-4bae-8c87-f872a6c18965" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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-correlation-request-id": [ "bb78cb60-2c64-430f-9718-e4ba3e3267fc" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095741Z:bb78cb60-2c64-430f-9718-e4ba3e3267fc" ], + "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, 30 Jul 2020 09:57:40 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:23:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/d68020cb-3b9b-43c2-964b-34b8be7f03a3\",\"name\":\"d68020cb-3b9b-43c2-964b-34b8be7f03a3\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:57:06.2096389Z\",\"endTime\":\"2020-07-30T09:57:15.0071871Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"d36141c5-d848-4007-a627-037003da09de\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?api-version=2020-06-14", + "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": [ "347", "348", "349" ], - "x-ms-client-request-id": [ "66a58dd2-4252-44db-aa18-446571077227", "66a58dd2-4252-44db-aa18-446571077227", "66a58dd2-4252-44db-aa18-446571077227" ], + "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": [ "846edc7f-9a20-46a6-be65-f4e20e18a2ea" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "edef39a1-b2a3-4f18-aee3-1f50a00eab01" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095743Z:edef39a1-b2a3-4f18-aee3-1f50a00eab01" ], + "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, 30 Jul 2020 09:57:43 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj\",\"name\":\"testfclusterkgb956/testdbconfv8aetj\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"databaseName\":\"testdatabasev8aetj\",\"attachedDatabaseNames\":[\"testdatabasev8aetj\"],\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/AttachedDatabaseConfigurations/testdbconfv8aetj?api-version=2020-06-14", + "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": [ "350" ], - "x-ms-client-request-id": [ "ab3df4c8-e73d-4f22-bc18-6dbba169c62a" ], + "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/91ca98e4-a41e-4708-8816-7844fd9fe34a?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/91ca98e4-a41e-4708-8816-7844fd9fe34a?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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/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": [ "405882fe-1226-41aa-aafc-aa49dee7b341" ], - "x-ms-correlation-request-id": [ "405882fe-1226-41aa-aafc-aa49dee7b341" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095748Z:405882fe-1226-41aa-aafc-aa49dee7b341" ], + "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, 30 Jul 2020 09:57:48 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/91ca98e4-a41e-4708-8816-7844fd9fe34a?api-version=2020-06-14+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/91ca98e4-a41e-4708-8816-7844fd9fe34a?api-version=2020-06-14", + "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": [ "350", "351" ], - "x-ms-client-request-id": [ "ab3df4c8-e73d-4f22-bc18-6dbba169c62a", "ab3df4c8-e73d-4f22-bc18-6dbba169c62a" ], + "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" ], @@ -304,31 +304,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "99905312-3f26-4ce6-a154-cf45e832d88c" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "852bc43a-1cc5-4e18-b714-35c363f794ae" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095819Z:852bc43a-1cc5-4e18-b714-35c363f794ae" ], + "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, 30 Jul 2020 09:58:19 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:23:59 GMT" ] }, "ContentHeaders": { "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/91ca98e4-a41e-4708-8816-7844fd9fe34a\",\"name\":\"91ca98e4-a41e-4708-8816-7844fd9fe34a\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:57:48.2128242Z\",\"endTime\":\"2020-07-30T09:57:53.3850785Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"31e2fd9e-347b-4949-a9ab-c0b6d77b05c5\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/91ca98e4-a41e-4708-8816-7844fd9fe34a?api-version=2020-06-14\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/91ca98e4-a41e-4708-8816-7844fd9fe34a?api-version=2020-06-14\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": [ "350", "351", "352" ], - "x-ms-client-request-id": [ "ab3df4c8-e73d-4f22-bc18-6dbba169c62a", "ab3df4c8-e73d-4f22-bc18-6dbba169c62a", "ab3df4c8-e73d-4f22-bc18-6dbba169c62a" ], + "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": [ "295ea72b-60ed-4a18-b8f6-d161030201e5" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "278" ], - "x-ms-correlation-request-id": [ "97321ad4-7152-4357-bd7d-406ae0e70e70" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095820Z:97321ad4-7152-4357-bd7d-406ae0e70e70" ], + "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, 30 Jul 2020 09:58:19 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabasev8aetj?api-version=2020-06-14", + "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": [ "353" ], - "x-ms-client-request-id": [ "6831401e-91eb-4a3d-987d-d1c96c0ce707" ], + "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/c777c7b5-1e65-4e08-8e24-7718a09b2c36?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/c777c7b5-1e65-4e08-8e24-7718a09b2c36?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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/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": [ "83ed96e6-974f-4191-a6f4-f2317464b87c" ], - "x-ms-correlation-request-id": [ "83ed96e6-974f-4191-a6f4-f2317464b87c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095824Z:83ed96e6-974f-4191-a6f4-f2317464b87c" ], + "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, 30 Jul 2020 09:58:24 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/c777c7b5-1e65-4e08-8e24-7718a09b2c36?api-version=2020-06-14+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/c777c7b5-1e65-4e08-8e24-7718a09b2c36?api-version=2020-06-14", + "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": [ "353", "354" ], - "x-ms-client-request-id": [ "6831401e-91eb-4a3d-987d-d1c96c0ce707", "6831401e-91eb-4a3d-987d-d1c96c0ce707" ], + "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": [ "55c659d8-28b0-4741-814c-92b7207c6468" ], - "x-ms-request-id": [ "78305b90-8ca0-4308-9f59-fc61aed85000" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "NORTHEUROPE:20200730T095856Z:55c659d8-28b0-4741-814c-92b7207c6468" ], + "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, 30 Jul 2020 09:58:55 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:24:29 GMT" ] }, "ContentHeaders": { "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/c777c7b5-1e65-4e08-8e24-7718a09b2c36\",\"name\":\"c777c7b5-1e65-4e08-8e24-7718a09b2c36\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:58:21.4027581Z\",\"endTime\":\"2020-07-30T09:58:32.9973178Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"9f31f4c3-892c-446f-84da-f53fefc950e9\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/c777c7b5-1e65-4e08-8e24-7718a09b2c36?api-version=2020-06-14\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/c777c7b5-1e65-4e08-8e24-7718a09b2c36?api-version=2020-06-14\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": [ "353", "354", "355" ], - "x-ms-client-request-id": [ "6831401e-91eb-4a3d-987d-d1c96c0ce707", "6831401e-91eb-4a3d-987d-d1c96c0ce707", "6831401e-91eb-4a3d-987d-d1c96c0ce707" ], + "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": [ "1589aebd-0418-452c-bc7a-adcb8c432525" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "276" ], - "x-ms-correlation-request-id": [ "af629d82-257a-41c6-8f5d-1b46fad1bfe0" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095858Z:af629d82-257a-41c6-8f5d-1b46fad1bfe0" ], + "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, 30 Jul 2020 09:58:58 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 5cb4784531a2..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14", + "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": [ "56ec8f98-2116-43c7-9492-a43a457766ef" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "8fcebaa1-3e3f-4a99-a621-ee37a91350a4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095909Z:8fcebaa1-3e3f-4a99-a621-ee37a91350a4" ], + "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, 30 Jul 2020 09:59:08 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf\",\"name\":\"testclusterani9hf\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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": [ "275" ], - "x-ms-request-id": [ "2ddbd147-7eda-49ca-b8fe-c25f99846dd2" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "9051dc3d-b891-49b6-8ba3-e8435d3534eb" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T095942Z:9051dc3d-b891-49b6-8ba3-e8435d3534eb" ], + "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, 30 Jul 2020 09:59:41 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:25:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "feb6cc57-de75-48b3-a426-476c80657f26" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "ec009aa4-644b-477d-8e68-dcc67c557d39" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100013Z:ec009aa4-644b-477d-8e68-dcc67c557d39" ], + "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, 30 Jul 2020 10:00:13 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:25:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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": [ "288" ], - "x-ms-request-id": [ "43e15fbb-915c-4160-8650-a10d3d6ac8b0" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "fb7774f9-6482-4410-8d94-89c65d6ecb13" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100049Z:fb7774f9-6482-4410-8d94-89c65d6ecb13" ], + "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, 30 Jul 2020 10:00:49 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:26:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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": [ "287" ], - "x-ms-request-id": [ "7c5ab1bf-435b-4502-a0b5-50f386717e83" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "5e72ccdb-011f-4c66-a2c7-b406cb45e931" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100122Z:5e72ccdb-011f-4c66-a2c7-b406cb45e931" ], + "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, 30 Jul 2020 10:01:21 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:26:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "5c17c655-3f4e-4192-a5a5-207f16328b4e" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "764c0168-650c-431c-a90f-2f69ef23a26f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100152Z:764c0168-650c-431c-a90f-2f69ef23a26f" ], + "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, 30 Jul 2020 10:01:52 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:27:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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": [ "6c8ff3e6-0442-41cc-ac75-7ae2a79a0286" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "ecfdd7e5-2205-487f-8baf-38f442f3c151" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100223Z:ecfdd7e5-2205-487f-8baf-38f442f3c151" ], + "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, 30 Jul 2020 10:02:22 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:27:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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": [ "5bbb0b54-7975-4de8-bcaa-02c4760b96fd" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "a684d60d-cece-4977-99fb-8e073dea8fb3" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100253Z:a684d60d-cece-4977-99fb-8e073dea8fb3" ], + "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, 30 Jul 2020 10:02:53 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:28:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "7700cb43-ae90-426a-b823-6b8746c5fdd0" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "2ee23ec6-8cb0-47cb-b6fe-e7451e86b424" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100329Z:2ee23ec6-8cb0-47cb-b6fe-e7451e86b424" ], + "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, 30 Jul 2020 10:03:29 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:28:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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-correlation-request-id": [ "11068a11-b53a-411e-bf80-939d504f3908" ], - "x-ms-request-id": [ "58ac53d9-2223-4250-b8e5-8e05228d046a" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-routing-request-id": [ "NORTHEUROPE:20200730T100403Z:11068a11-b53a-411e-bf80-939d504f3908" ], + "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, 30 Jul 2020 10:04:03 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:29:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T09:59:08.8748501Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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": [ "8f31a71e-0106-46d4-a708-166053f4f888" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "53936021-9d63-4aa8-bdb0-db2adb7e2d8b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100436Z:53936021-9d63-4aa8-bdb0-db2adb7e2d8b" ], + "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, 30 Jul 2020 10:04:35 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:29:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "290" ], - "x-ms-request-id": [ "ffdfb3c0-4cae-44bc-b3bb-6cafd223d403" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "e9cd5dbb-300a-4272-b211-3aac275c4fb8" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100506Z:e9cd5dbb-300a-4272-b211-3aac275c4fb8" ], + "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, 30 Jul 2020 10:05:06 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:30:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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": [ "289" ], - "x-ms-request-id": [ "a6e9a5f5-2f0c-4b0c-a7f0-2868976df4a2" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "290cdff1-0f01-42d6-a15f-49a6433c3b38" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100540Z:290cdff1-0f01-42d6-a15f-49a6433c3b38" ], + "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, 30 Jul 2020 10:05:40 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:30:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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": [ "288" ], - "x-ms-request-id": [ "fdb29a45-1608-4a4b-8d4c-6f51c8e637f4" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "aa60d2b2-122d-4371-87c6-a6d736dd96c8" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100610Z:aa60d2b2-122d-4371-87c6-a6d736dd96c8" ], + "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, 30 Jul 2020 10:06:10 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:31:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "800c7c31-1307-4202-9f4c-7c9efa8ae022" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "96460d37-a9a4-4b38-9e36-b99dfe777149" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100641Z:96460d37-a9a4-4b38-9e36-b99dfe777149" ], + "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, 30 Jul 2020 10:06:41 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:31:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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": [ "286" ], - "x-ms-request-id": [ "11f33057-7fa7-47bb-9057-cb0a771567a1" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "c9d9140f-15dd-4d43-8b76-fd3319ec3c30" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100711Z:c9d9140f-15dd-4d43-8b76-fd3319ec3c30" ], + "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, 30 Jul 2020 10:07:10 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:32:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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": [ "285" ], - "x-ms-request-id": [ "c184fd13-6bea-4ff5-a872-7b529bb40841" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "542b78f2-976f-44ad-a92a-4f432c29f45c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100741Z:542b78f2-976f-44ad-a92a-4f432c29f45c" ], + "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, 30 Jul 2020 10:07:40 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:32:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "bdf05345-4821-4029-b64a-c07ca1bfd9b2" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "a33338e6-e9bd-48bb-9f1d-3883c71b545b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100811Z:a33338e6-e9bd-48bb-9f1d-3883c71b545b" ], + "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, 30 Jul 2020 10:08:11 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:33:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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": [ "283" ], - "x-ms-request-id": [ "edc95d28-a84e-4dd1-9949-f21293f025ab" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "13340fe3-a658-4d7c-a58b-6243bd94bf02" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100842Z:13340fe3-a658-4d7c-a58b-6243bd94bf02" ], + "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, 30 Jul 2020 10:08:41 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:33:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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": [ "282" ], - "x-ms-request-id": [ "c22b1039-743e-438f-be4a-376eb1e95983" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "bb690467-b2b8-49fc-8cb1-1a403af7d6d1" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T100912Z:bb690467-b2b8-49fc-8cb1-1a403af7d6d1" ], + "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, 30 Jul 2020 10:09:12 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:34:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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": [ "3b889f4c-b3fa-4166-b5e8-d7f222c87e6d" ], - "x-ms-request-id": [ "f67fc677-687b-49b8-a900-2e71b55ceb07" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "NORTHEUROPE:20200730T100942Z:3b889f4c-b3fa-4166-b5e8-d7f222c87e6d" ], + "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, 30 Jul 2020 10:09:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:34:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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" ], @@ -880,31 +880,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "a44af09f-c298-4941-9e5d-4feed77c894e" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "035d34de-75bf-49f2-b00b-f8b94ef68601" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101013Z:035d34de-75bf-49f2-b00b-f8b94ef68601" ], + "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, 30 Jul 2020 10:10:12 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:35:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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" ], @@ -921,31 +921,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "e31e9bd4-2693-4b5c-85d1-cfb8155a2031" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "f2b2c683-7655-4f60-8357-91c42c4955d7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101043Z:f2b2c683-7655-4f60-8357-91c42c4955d7" ], + "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, 30 Jul 2020 10:10:43 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:35:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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" ], @@ -962,31 +962,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "dfbe92e3-7b20-451c-b3ce-8fd856520392" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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-correlation-request-id": [ "6a577b34-c4e1-47a6-bed1-c0c48c74c4eb" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101113Z:6a577b34-c4e1-47a6-bed1-c0c48c74c4eb" ], + "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, 30 Jul 2020 10:11:13 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:36:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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" ], @@ -1003,31 +1003,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "d06e4243-f883-4e71-a4cf-e1a241702714" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "502ff1f3-8f63-4518-8269-1552aa486193" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101143Z:502ff1f3-8f63-4518-8269-1552aa486193" ], + "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, 30 Jul 2020 10:11:43 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:36:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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/providers/Microsoft.Kusto/locations/East%20US/operationResults/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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" ], @@ -1044,31 +1044,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "b0ceb045-7205-48c7-95ae-811217c74722" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "62129525-2bfc-432a-9cd2-bec232ba7891" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101214Z:62129525-2bfc-432a-9cd2-bec232ba7891" ], + "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, 30 Jul 2020 10:12:13 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:37:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+27": { + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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" ], @@ -1085,31 +1085,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "69c47cd7-21a4-4113-abff-7641d389dbc4" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "2e752a39-5012-4087-967a-d7b35da96ab6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101244Z:2e752a39-5012-4087-967a-d7b35da96ab6" ], + "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, 30 Jul 2020 10:12:43 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:37:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+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+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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" ], @@ -1126,31 +1126,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "478f98dd-4b65-4271-80a6-54fb367c05f8" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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-correlation-request-id": [ "cc61566f-3949-42ab-971e-c7fd1e4df785" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101314Z:cc61566f-3949-42ab-971e-c7fd1e4df785" ], + "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, 30 Jul 2020 10:13:14 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:38:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "500" ], + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14+29": { + "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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", + "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": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], + "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" ], @@ -1160,129 +1160,6 @@ "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": [ "e7171c0a-07fa-4119-8164-22340f321cf9" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "9ee7f561-b38d-441a-aa45-9ee73a2d5a92" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101344Z:9ee7f561-b38d-441a-aa45-9ee73a2d5a92" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 10:13:44 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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385" ], - "x-ms-client-request-id": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], - "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", "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", "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", "__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-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "abc42a36-92d5-4cf4-bba9-ca648c78e631" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e3e37239-f3c7-41d6-9486-000c6b9c594b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101415Z:e3e37239-f3c7-41d6-9486-000c6b9c594b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 10:14:14 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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Running\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:04:12.4907181Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "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": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], - "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", "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", "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", "__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": [ "280" ], - "x-ms-request-id": [ "25e040fc-5de0-4e71-8103-a2b2bc5d741d" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "65b61661-d89e-495a-b443-34b525d0e6f9" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101445Z:65b61661-d89e-495a-b443-34b525d0e6f9" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 10:14:44 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/d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"name\":\"d5d7cfc6-8e4b-4158-b617-96200c4e9beb\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T09:59:08.8748501Z\",\"endTime\":\"2020-07-30T10:14:35.4371972Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"d8f4e4be-1202-40fe-8096-507c661e86f9\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14+32": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "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": [ "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c", "9e4c2688-89f5-43d0-855a-0ab0323f7b1c" ], - "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", "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", "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", "__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": { @@ -1291,31 +1168,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "6234b5ae-22e2-4596-80f4-2e581c44e046" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "7e0f4840-16d4-48bd-92e4-b100265c04ef" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101445Z:7e0f4840-16d4-48bd-92e4-b100265c04ef" ], + "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, 30 Jul 2020 10:14:44 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:38:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf\",\"name\":\"testclusterani9hf\",\"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://testclusterani9hf.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterani9hf.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"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\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14+33": { + "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": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testclusterani9hf?api-version=2020-06-14", + "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": [ "388" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51" ], + "x-ms-unique-id": [ "396" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632" ], "CommandName": [ "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1330,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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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/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-ratelimit-remaining-subscription-deletes": [ "14986" ], - "x-ms-request-id": [ "fdab5d6f-31b8-4d27-9d6f-a4bbe16ebabd" ], - "x-ms-correlation-request-id": [ "fdab5d6f-31b8-4d27-9d6f-a4bbe16ebabd" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101446Z:fdab5d6f-31b8-4d27-9d6f-a4bbe16ebabd" ], + "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, 30 Jul 2020 10:14:45 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:38:11 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1349,14 +1226,14 @@ "Content": null } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", + "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": [ "388", "389" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], + "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" ], @@ -1372,32 +1249,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "3fb16db0-3ac8-4546-8bc3-f728f0f60fe8" ], - "x-ms-request-id": [ "a78ac598-d5c0-460f-84d4-cfe5d7d35880" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "NORTHEUROPE:20200730T101516Z:3fb16db0-3ac8-4546-8bc3-f728f0f60fe8" ], + "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, 30 Jul 2020 10:15:16 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:38:42 GMT" ] }, "ContentHeaders": { "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", + "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": [ "388", "389", "390" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], + "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" ], @@ -1413,32 +1290,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "c56bc97d-1432-41f7-bdf3-d7104e416c48" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "68e7b40b-8441-4911-9000-06e3bbe9f68b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101547Z:68e7b40b-8441-4911-9000-06e3bbe9f68b" ], + "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, 30 Jul 2020 10:15:46 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:39:12 GMT" ] }, "ContentHeaders": { "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", + "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": [ "388", "389", "390", "391" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], + "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" ], @@ -1454,32 +1331,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "c7a275df-e1f3-44c1-ba39-9fa13db8b57a" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "26b5b644-c61e-4d3e-892f-6cdf86413dc5" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101617Z:26b5b644-c61e-4d3e-892f-6cdf86413dc5" ], + "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, 30 Jul 2020 10:16:16 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:39:42 GMT" ] }, "ContentHeaders": { "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", + "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": [ "388", "389", "390", "391", "392" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], + "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" ], @@ -1495,32 +1372,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "286ded9e-fa21-4c51-8b95-de905b814999" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "35686720-eca7-44d8-9d2d-7c33034e8c7d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101647Z:35686720-eca7-44d8-9d2d-7c33034e8c7d" ], + "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, 30 Jul 2020 10:16:47 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:40:13 GMT" ] }, "ContentHeaders": { "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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+35": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", + "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": [ "388", "389", "390", "391", "392", "393" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], + "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" ], @@ -1536,32 +1413,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "91f42012-8b73-43ea-bb58-0d3d1c636082" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "1b8d9d9f-3011-40c3-b6c2-73d47d619ea9" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101718Z:1b8d9d9f-3011-40c3-b6c2-73d47d619ea9" ], + "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, 30 Jul 2020 10:17:17 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:40:43 GMT" ] }, "ContentHeaders": { "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", + "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": [ "388", "389", "390", "391", "392", "393", "394" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], + "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" ], @@ -1577,32 +1454,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "a56822ee-b2f5-424b-a3a9-decac1cc723f" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "a637e2d4-2d73-40ff-8d76-52ee0bea9f24" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101748Z:a637e2d4-2d73-40ff-8d76-52ee0bea9f24" ], + "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, 30 Jul 2020 10:17:47 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:41:13 GMT" ] }, "ContentHeaders": { "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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+37": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", + "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": [ "388", "389", "390", "391", "392", "393", "394", "395" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], + "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" ], @@ -1618,32 +1495,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "6bf915bb-23bf-4525-aec9-e10ab4f421c4" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "b058efe7-20ce-47e4-9e78-87b88264ae6e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101818Z:b058efe7-20ce-47e4-9e78-87b88264ae6e" ], + "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, 30 Jul 2020 10:18:18 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:41:44 GMT" ] }, "ContentHeaders": { "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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+38": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", + "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": [ "388", "389", "390", "391", "392", "393", "394", "395", "396" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], + "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" ], @@ -1659,32 +1536,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "a64c45f8-eb41-477e-805e-9669514403e6" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "c8e1f5cc-3cd4-4838-890f-6628c7822046" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101848Z:c8e1f5cc-3cd4-4838-890f-6628c7822046" ], + "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, 30 Jul 2020 10:18:48 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:42:14 GMT" ] }, "ContentHeaders": { "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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+39": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", + "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": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], + "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" ], @@ -1700,32 +1577,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "adbfee31-cef0-4767-9890-381ec8464afd" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "97b8a76c-350e-488f-9099-79c0dabac992" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101918Z:97b8a76c-350e-488f-9099-79c0dabac992" ], + "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, 30 Jul 2020 10:19:18 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:42:44 GMT" ] }, "ContentHeaders": { "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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+40": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", + "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": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], + "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" ], @@ -1741,32 +1618,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "4c8f716f-6ab3-42a0-9448-71e374bacce0" ], + "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-correlation-request-id": [ "a25c9c39-e27b-4307-b70f-74d6dbcc131f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T101949Z:a25c9c39-e27b-4307-b70f-74d6dbcc131f" ], + "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, 30 Jul 2020 10:19:48 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:43:14 GMT" ] }, "ContentHeaders": { "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+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+41": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", + "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": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], + "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" ], @@ -1782,32 +1659,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "74b98fdc-e51a-40d8-bb1d-9f93477a4b16" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "582187da-175f-48cf-b6d1-17b926a42d15" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102019Z:582187da-175f-48cf-b6d1-17b926a42d15" ], + "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, 30 Jul 2020 10:20:18 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:43:45 GMT" ] }, "ContentHeaders": { "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+45": { + "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", + "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": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], + "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" ], @@ -1823,32 +1700,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "88695c20-7433-4048-a6b0-55d4e370659b" ], - "x-ms-request-id": [ "c492ba1c-25a5-49bb-9d5d-ce5b1727a372" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-routing-request-id": [ "NORTHEUROPE:20200730T102049Z:88695c20-7433-4048-a6b0-55d4e370659b" ], + "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, 30 Jul 2020 10:20:49 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:44:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "492" ], + "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+46": { + "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", + "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": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], + "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" ], @@ -1863,343 +1740,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "9b4de67f-8acb-468f-ba84-9dd0e76ce2cb" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ffa17e56-76b5-4bea-a606-4c2fcc6b3007" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102120Z:ffa17e56-76b5-4bea-a606-4c2fcc6b3007" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 10:21:20 GMT" ] - }, - "ContentHeaders": { - "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], - "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" ], - "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": [ "f56415e8-d49c-4036-9f24-b08d445f59c7" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "f65e6829-7c56-4ce7-9792-a530ee44c389" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102150Z:f65e6829-7c56-4ce7-9792-a530ee44c389" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 10:21:50 GMT" ] - }, - "ContentHeaders": { - "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+48": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402", "403" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], - "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" ], - "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": [ "713c18c8-6e7d-49ca-a66f-ad02954e6950" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "749d9e3e-1c16-441b-8407-bc23efa0e5b1" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102220Z:749d9e3e-1c16-441b-8407-bc23efa0e5b1" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 10:22:19 GMT" ] - }, - "ContentHeaders": { - "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+49": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402", "403", "404" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], - "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" ], - "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": [ "e0802c28-6038-4343-907c-7deff99cb17f" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b3d8e78c-3fc0-4962-8f80-4c2ee07e145b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102251Z:b3d8e78c-3fc0-4962-8f80-4c2ee07e145b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 10:22:50 GMT" ] - }, - "ContentHeaders": { - "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+50": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402", "403", "404", "405" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], - "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" ], - "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": [ "8fec8510-12a4-4cae-967a-d596aee8c1d2" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "6e7b4448-a497-4299-8c57-271ecb7dfaf1" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102321Z:6e7b4448-a497-4299-8c57-271ecb7dfaf1" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 10:23:20 GMT" ] - }, - "ContentHeaders": { - "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+51": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402", "403", "404", "405", "406" ], - "x-ms-client-request-id": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], - "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": [ "161607dc-a2f0-49d5-8dec-12a6514172d4" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "107c5304-b1a9-41fc-88d2-2904e96b59fb" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102351Z:107c5304-b1a9-41fc-88d2-2904e96b59fb" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 10:23:51 GMT" ] - }, - "ContentHeaders": { - "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+52": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "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": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], - "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": [ "45f4c814-255f-49b7-9993-cd1d83564095" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "67c5eb29-d159-4462-8e19-24137051cc3c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102421Z:67c5eb29-d159-4462-8e19-24137051cc3c" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 10:24:21 GMT" ] - }, - "ContentHeaders": { - "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:14:47.1254639Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14+53": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "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": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], - "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-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "b6ebfb19-19fa-4bdd-bfd1-26ebeb43656a" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "cd12a97c-8706-4ab4-aa11-dbed74153f36" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102452Z:cd12a97c-8706-4ab4-aa11-dbed74153f36" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 10:24:51 GMT" ] - }, - "ContentHeaders": { - "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/c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"name\":\"c9faaa64-6460-42f4-80ff-71362ed1cc7e\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:14:46.1878903Z\",\"endTime\":\"2020-07-30T10:24:26.0210223Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"9c1558c9-6f70-49eb-b8ce-3575a1133f77\",\"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/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14\u0026operationResultResponseType=Location+54": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c9faaa64-6460-42f4-80ff-71362ed1cc7e?api-version=2020-06-14\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "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": [ "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51", "92334708-428c-4c77-8f37-51c43ba6ce51" ], - "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" ], - "x-ms-request-id": [ "08d351c2-1858-47f9-a0ed-532145b3aa34" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "31460aeb-878f-4ced-a04c-7c81b0502525" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102452Z:31460aeb-878f-4ced-a04c-7c81b0502525" ], + "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, 30 Jul 2020 10:24:51 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 53d49a3f2702..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/removeLanguageExtensions?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/removeLanguageExtensions?api-version=2020-06-14", + "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/c72e87d6-f5c4-42fd-8d8a-f696c4d0acdc?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "d8d8056a-b340-459a-94bd-18b630e279ab" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c72e87d6-f5c4-42fd-8d8a-f696c4d0acdc?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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/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": [ "1198" ], - "x-ms-correlation-request-id": [ "12ddcb86-3833-4ebc-a7e4-07a6e80474fc" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102453Z:12ddcb86-3833-4ebc-a7e4-07a6e80474fc" ], + "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, 30 Jul 2020 10:24:52 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/c72e87d6-f5c4-42fd-8d8a-f696c4d0acdc?api-version=2020-06-14+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/c72e87d6-f5c4-42fd-8d8a-f696c4d0acdc?api-version=2020-06-14", + "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": [ "7989ffde-a447-42e8-adc5-f9ad05cfcaff", "7989ffde-a447-42e8-adc5-f9ad05cfcaff" ], + "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": [ "1cd134db-2685-47cd-91a2-f8c3e4ea5a94" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "1df4b1d7-f80c-4b31-8182-85a22d94d340" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102523Z:1df4b1d7-f80c-4b31-8182-85a22d94d340" ], + "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, 30 Jul 2020 10:25:23 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:44:45 GMT" ] }, "ContentHeaders": { "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/c72e87d6-f5c4-42fd-8d8a-f696c4d0acdc\",\"name\":\"c72e87d6-f5c4-42fd-8d8a-f696c4d0acdc\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:24:53.5926983Z\",\"endTime\":\"2020-07-30T10:24:58.3586959Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6da8e3e5-2480-424b-a701-82c57513134c\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/c72e87d6-f5c4-42fd-8d8a-f696c4d0acdc?api-version=2020-06-14\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/c72e87d6-f5c4-42fd-8d8a-f696c4d0acdc?api-version=2020-06-14\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": [ "7989ffde-a447-42e8-adc5-f9ad05cfcaff", "7989ffde-a447-42e8-adc5-f9ad05cfcaff", "7989ffde-a447-42e8-adc5-f9ad05cfcaff" ], + "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": [ "34d4c7bb-48d5-4178-8637-2fc6c917954c" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "5340e516-7eb9-40a7-9e83-dabed5b5305b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102524Z:5340e516-7eb9-40a7-9e83-dabed5b5305b" ], + "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, 30 Jul 2020 10:25:23 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14", + "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": [ "32e66478-2cfb-4c49-a830-1f81d705bca7" ], + "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": [ "13e27a15-94e4-4160-97e0-0608861338b6" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "f1420482-143c-411b-8abf-ab9257977555" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102525Z:f1420482-143c-411b-8abf-ab9257977555" ], + "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, 30 Jul 2020 10:25:24 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:44:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "828" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.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\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/removeLanguageExtensions?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/removeLanguageExtensions?api-version=2020-06-14", + "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "a9ce1d7f-a784-4e71-bd40-b5b695262e8f" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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/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": [ "1197" ], - "x-ms-correlation-request-id": [ "705d6841-903d-4e06-864e-60e2e3ae1f56" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102525Z:705d6841-903d-4e06-864e-60e2e3ae1f56" ], + "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, 30 Jul 2020 10:25:25 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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14+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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14", + "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": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "4801502c-a568-48f4-847c-4b6fd6734b1e" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "3f82b029-7786-45e0-8939-08b123ec6021" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102556Z:3f82b029-7786-45e0-8939-08b123ec6021" ], + "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, 30 Jul 2020 10:25:55 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:45:17 GMT" ] }, "ContentHeaders": { "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"name\":\"1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:25:25.7671592Z\",\"endTime\":\"2020-07-30T10:25:28.6892433Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"2caaeacf-53ce-4a9c-9759-689b5a5eab23\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14+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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14", + "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": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], + "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-correlation-request-id": [ "91f0fee3-47bd-4102-ae87-1769cb6e2e1b" ], - "x-ms-request-id": [ "06da7310-2c06-4fa0-8f98-cc8f16c9e26a" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-routing-request-id": [ "NORTHEUROPE:20200730T102626Z:91f0fee3-47bd-4102-ae87-1769cb6e2e1b" ], + "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, 30 Jul 2020 10:26:26 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:45:47 GMT" ] }, "ContentHeaders": { "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"name\":\"1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:25:25.7671592Z\",\"endTime\":\"2020-07-30T10:25:28.6892433Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"2caaeacf-53ce-4a9c-9759-689b5a5eab23\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14+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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14", + "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": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], + "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": [ "22d183af-94a7-4a3c-82a7-8d30dc8282ac" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "2e730f0a-1a2e-4309-b8ad-d2a583b17bbd" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102657Z:2e730f0a-1a2e-4309-b8ad-d2a583b17bbd" ], + "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, 30 Jul 2020 10:26:56 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:46:17 GMT" ] }, "ContentHeaders": { "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"name\":\"1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:25:25.7671592Z\",\"endTime\":\"2020-07-30T10:25:28.6892433Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"2caaeacf-53ce-4a9c-9759-689b5a5eab23\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14+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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14", + "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": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "e641f122-bb08-4988-8573-13fd2e433af0" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "f87efa4c-0a7e-4cac-98bb-ce27ef356a82" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102727Z:f87efa4c-0a7e-4cac-98bb-ce27ef356a82" ], + "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, 30 Jul 2020 10:27:27 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:46:47 GMT" ] }, "ContentHeaders": { "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"name\":\"1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:25:25.7671592Z\",\"endTime\":\"2020-07-30T10:25:28.6892433Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"2caaeacf-53ce-4a9c-9759-689b5a5eab23\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14+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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14", + "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": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], + "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": [ "fb54c273-3ca6-4f62-8a4e-0a17aba7ca55" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "1e2ddb7c-4765-49ce-a17b-1cfc1dbdd4af" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102757Z:1e2ddb7c-4765-49ce-a17b-1cfc1dbdd4af" ], + "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, 30 Jul 2020 10:27:57 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:47:18 GMT" ] }, "ContentHeaders": { "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"name\":\"1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:25:25.7671592Z\",\"endTime\":\"2020-07-30T10:25:28.6892433Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"2caaeacf-53ce-4a9c-9759-689b5a5eab23\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14+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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14", + "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": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], + "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": [ "b2cf1f78-4692-45b3-9b8b-c3781bb73db5" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "6921bfeb-6f4b-4d07-a8c3-97667ce94d55" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102828Z:6921bfeb-6f4b-4d07-a8c3-97667ce94d55" ], + "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, 30 Jul 2020 10:28:27 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:47:49 GMT" ] }, "ContentHeaders": { "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"name\":\"1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:25:25.7671592Z\",\"endTime\":\"2020-07-30T10:25:28.6892433Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"2caaeacf-53ce-4a9c-9759-689b5a5eab23\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14+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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14", + "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": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "0db450b9-1727-479e-9190-99331fe9bee5" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "115461b5-d89c-49e4-84c9-e79070a46a61" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102858Z:115461b5-d89c-49e4-84c9-e79070a46a61" ], + "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, 30 Jul 2020 10:28:57 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:48:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"name\":\"1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:25:25.7671592Z\",\"endTime\":\"2020-07-30T10:25:28.6892433Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"2caaeacf-53ce-4a9c-9759-689b5a5eab23\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14+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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14", + "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": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], + "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,56 +502,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "ae729054-5de8-4cfd-bcdb-62a2291352ae" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d8fa91d0-4b5f-45af-b671-2d3e46f14e5f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102928Z:d8fa91d0-4b5f-45af-b671-2d3e46f14e5f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 10:29:27 GMT" ] - }, - "ContentHeaders": { - "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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"name\":\"1dbe3e9b-35a3-475b-a814-8ed23f4b59fa\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:25:25.7671592Z\",\"endTime\":\"2020-07-30T10:29:10.4623579Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"2caaeacf-53ce-4a9c-9759-689b5a5eab23\",\"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/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14\u0026operationResultResponseType=Location+11": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/1dbe3e9b-35a3-475b-a814-8ed23f4b59fa?api-version=2020-06-14\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "414", "415", "416", "417", "418", "419", "420", "421", "422", "423" ], - "x-ms-client-request-id": [ "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae", "0b82230c-84b6-49c2-86f0-ec41cee913ae" ], - "CommandName": [ "Remove-AzKustoClusterLanguageExtension", "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", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded" ], - "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" ], - "x-ms-request-id": [ "3b7e42f7-bef6-4c86-9e4c-cd699c5e06f1" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "278" ], - "x-ms-correlation-request-id": [ "156abea8-2ece-4782-ac54-c8afbed0d0a2" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T102928Z:156abea8-2ece-4782-ac54-c8afbed0d0a2" ], + "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, 30 Jul 2020 10:29:27 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 26cbaf991286..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "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": [ "5efdde84-cd9c-4b29-9050-6360f79efa80" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/dc1307c3-19a6-44dd-b6ec-aef6b1040ca9?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "199" ], - "x-ms-correlation-request-id": [ "f8ef4afb-f2dd-4c1a-a4c5-303dabbbb3e4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105315Z:f8ef4afb-f2dd-4c1a-a4c5-303dabbbb3e4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], + "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, 30 Jul 2020 10:53:15 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/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/dc1307c3-19a6-44dd-b6ec-aef6b1040ca9?api-version=2020-06-14+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/dc1307c3-19a6-44dd-b6ec-aef6b1040ca9?api-version=2020-06-14", + "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": [ "424", "425" ], - "x-ms-client-request-id": [ "e52025c4-4a6d-4057-8efd-65af27f5866b", "e52025c4-4a6d-4057-8efd-65af27f5866b" ], + "x-ms-unique-id": [ "423", "424" ], + "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": [ "299" ], - "x-ms-request-id": [ "410437ac-4bf3-4d41-9620-8ef87c7e6cce" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "e6ba2d7c-39fd-4509-a53e-9420f779481f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105345Z:e6ba2d7c-39fd-4509-a53e-9420f779481f" ], + "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, 30 Jul 2020 10:53:45 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:48:52 GMT" ] }, "ContentHeaders": { "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/dc1307c3-19a6-44dd-b6ec-aef6b1040ca9\",\"name\":\"dc1307c3-19a6-44dd-b6ec-aef6b1040ca9\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:53:15.4726629Z\",\"endTime\":\"2020-07-30T10:53:17.8634603Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsAdd\",\"RootActivityId\":\"4bc02f4c-47ec-46b1-9dbc-5a37d7a4d851\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "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": [ "424", "425", "426" ], - "x-ms-client-request-id": [ "e52025c4-4a6d-4057-8efd-65af27f5866b", "e52025c4-4a6d-4057-8efd-65af27f5866b", "e52025c4-4a6d-4057-8efd-65af27f5866b" ], + "x-ms-unique-id": [ "423", "424", "425" ], + "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": [ "eb50a280-af23-4fb1-998e-d1dd438e7ef8" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "7f073b8d-6eb2-4ad5-96b7-79b1160019c7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105346Z:7f073b8d-6eb2-4ad5-96b7-79b1160019c7" ], + "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, 30 Jul 2020 10:53:45 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "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": [ "427" ], - "x-ms-client-request-id": [ "c5878f67-7c82-4418-b296-c1c627bb5e7c" ], + "x-ms-unique-id": [ "426" ], + "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/ad627f50-297d-495c-b849-4c867b7d48cc?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/ad627f50-297d-495c-b849-4c867b7d48cc?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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/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": [ "14999" ], - "x-ms-request-id": [ "6109062c-1135-443a-bba2-730f6ae9e861" ], - "x-ms-correlation-request-id": [ "6109062c-1135-443a-bba2-730f6ae9e861" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105346Z:6109062c-1135-443a-bba2-730f6ae9e861" ], + "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, 30 Jul 2020 10:53:46 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/ad627f50-297d-495c-b849-4c867b7d48cc?api-version=2020-06-14+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/ad627f50-297d-495c-b849-4c867b7d48cc?api-version=2020-06-14", + "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": [ "427", "428" ], - "x-ms-client-request-id": [ "c5878f67-7c82-4418-b296-c1c627bb5e7c", "c5878f67-7c82-4418-b296-c1c627bb5e7c" ], + "x-ms-unique-id": [ "426", "427" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "a718a8a6-18d5-49d3-9ae2-8995edc950fd" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "937c9bfa-5cec-467b-8d6c-7708b9c74214" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105417Z:937c9bfa-5cec-467b-8d6c-7708b9c74214" ], + "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, 30 Jul 2020 10:54:16 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:49:23 GMT" ] }, "ContentHeaders": { "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/ad627f50-297d-495c-b849-4c867b7d48cc\",\"name\":\"ad627f50-297d-495c-b849-4c867b7d48cc\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:53:46.8657041Z\",\"endTime\":\"2020-07-30T10:53:48.3658111Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsDrop\",\"RootActivityId\":\"2151e0c2-2e95-4a1e-b6cb-bda6d91de467\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/ad627f50-297d-495c-b849-4c867b7d48cc?api-version=2020-06-14\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/ad627f50-297d-495c-b849-4c867b7d48cc?api-version=2020-06-14\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": [ "427", "428", "429" ], - "x-ms-client-request-id": [ "c5878f67-7c82-4418-b296-c1c627bb5e7c", "c5878f67-7c82-4418-b296-c1c627bb5e7c", "c5878f67-7c82-4418-b296-c1c627bb5e7c" ], + "x-ms-unique-id": [ "426", "427", "428" ], + "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": [ "e8a1b938-5f20-4fe0-a09e-6c2f2a752e22" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "297" ], - "x-ms-correlation-request-id": [ "04561d81-dd54-48b6-8fbf-b18746e7e0e5" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105417Z:04561d81-dd54-48b6-8fbf-b18746e7e0e5" ], + "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, 30 Jul 2020 10:54:16 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 6dcd0c38ca84..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14", + "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": [ "445" ], - "x-ms-client-request-id": [ "d296c9f4-43b7-4021-b9f9-7b2fda617fd5" ], + "x-ms-unique-id": [ "444" ], + "x-ms-client-request-id": [ "e97309bd-05c2-45de-92af-51e894464c81" ], "CommandName": [ "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -17,36 +17,119 @@ } }, "Response": { - "StatusCode": 204, + "StatusCode": 202, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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/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": [ "14996" ], - "x-ms-request-id": [ "d70fc8c3-7640-4d36-b1ed-6c600e74e2f6" ], - "x-ms-correlation-request-id": [ "d70fc8c3-7640-4d36-b1ed-6c600e74e2f6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105626Z:d70fc8c3-7640-4d36-b1ed-6c600e74e2f6" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14985" ], + "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, 30 Jul 2020 10:56:25 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:51:31 GMT" ] }, "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null + } + }, + "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/cd111729-9837-424f-b549-290e5e14b438?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "444", "445" ], + "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" ], + "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-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": [ "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": [ "Mon, 03 Aug 2020 00:52:01 GMT" ] + }, + "ContentHeaders": { + "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/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/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/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": [ "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" ], + "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" ], + "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": [ "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": [ "Mon, 03 Aug 2020 00:52:01 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, "Content": null } }, - "Remove-AzKustoDataConnection+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14+2": { + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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 \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubns5arkid/eventhubs/eventhub5arkid\",\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": { @@ -55,33 +138,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "aec35a28-a70c-4480-8c80-cbf8ab3f4db8" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9e6d324e-9569-4aab-83bf-1545cdd5f5b0?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "199" ], - "x-ms-correlation-request-id": [ "9bb72006-ab26-4aae-aedb-cf4bb4eb6de8" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105627Z:9bb72006-ab26-4aae-aedb-cf4bb4eb6de8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "196" ], + "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, 30 Jul 2020 10:56:26 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid/testdataconnection5arkid\",\"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/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubns5arkid/eventhubs/eventhub5arkid\",\"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/9e6d324e-9569-4aab-83bf-1545cdd5f5b0?api-version=2020-06-14+3": { + "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/9e6d324e-9569-4aab-83bf-1545cdd5f5b0?api-version=2020-06-14", + "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": [ "446", "447" ], - "x-ms-client-request-id": [ "a238a7dc-b14d-4f50-9daf-2f2fa0fa3823", "a238a7dc-b14d-4f50-9daf-2f2fa0fa3823" ], + "x-ms-unique-id": [ "447", "448" ], + "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" ], @@ -97,32 +180,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], - "x-ms-request-id": [ "d027dd4f-37b6-41d6-bcef-2a2b68a6681d" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "3a6fe4db-5ea8-44a3-8f9b-cc0b4fae76e7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105658Z:3a6fe4db-5ea8-44a3-8f9b-cc0b4fae76e7" ], + "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, 30 Jul 2020 10:56:57 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:52:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "621" ], + "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/9e6d324e-9569-4aab-83bf-1545cdd5f5b0\",\"name\":\"9e6d324e-9569-4aab-83bf-1545cdd5f5b0\",\"status\":\"Failed\",\"startTime\":\"2020-07-30T10:56:27.7697305Z\",\"endTime\":\"2020-07-30T10:56:29.5979942Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"db1db438-a505-4213-b3c2-11eb7e84b19e\",\"provisioningState\":\"Failed\",\"OperationState\":\"BadInput\"},\"error\":{\"code\":\"EventHubValidationErorFound\",\"message\":\"[BadRequest] Validation Errors found: table does not exist\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14+4": { + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14", + "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": [ "446", "447", "448" ], - "x-ms-client-request-id": [ "a238a7dc-b14d-4f50-9daf-2f2fa0fa3823", "a238a7dc-b14d-4f50-9daf-2f2fa0fa3823", "a238a7dc-b14d-4f50-9daf-2f2fa0fa3823" ], + "x-ms-unique-id": [ "447", "448", "449" ], + "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" ], @@ -133,26 +216,28 @@ } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2cb1714f-4a46-406b-a7e7-9cf4d3e8c294" ], + "ETag": [ "\"\"" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-correlation-request-id": [ "45b97fc0-6b38-45bb-a65c-38080b7e6fe2" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105658Z:45b97fc0-6b38-45bb-a65c-38080b7e6fe2" ], + "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, 30 Jul 2020 10:56:58 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:52:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "300" ], + "Content-Length": [ "770" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid\u0027 is not found.\"}}" + "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 a73974e8d7a9..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14", + "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": [ "bd08b648-f0ec-4dd2-bf95-08852f24088e" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/59a12386-2c13-4b47-b4c2-4ae53e901d52?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "199" ], - "x-ms-correlation-request-id": [ "23d95477-d065-48bc-a393-d11a83bddafb" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105418Z:23d95477-d065-48bc-a393-d11a83bddafb" ], + "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, 30 Jul 2020 10:54:17 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf\",\"name\":\"testcluster5arkid/testdatabaseani9hf\",\"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/59a12386-2c13-4b47-b4c2-4ae53e901d52?api-version=2020-06-14+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/59a12386-2c13-4b47-b4c2-4ae53e901d52?api-version=2020-06-14", + "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": [ "430", "431" ], - "x-ms-client-request-id": [ "706128d8-bd6c-4eff-90cf-15ffa6ecfafd", "706128d8-bd6c-4eff-90cf-15ffa6ecfafd" ], + "x-ms-unique-id": [ "429", "430" ], + "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": [ "296" ], - "x-ms-request-id": [ "bfee92d6-7476-40f3-92bf-47f71d236192" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "b0c0e08c-1f65-42c6-a648-d7a62b72df98" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105448Z:b0c0e08c-1f65-42c6-a648-d7a62b72df98" ], + "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, 30 Jul 2020 10:54:48 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:49:54 GMT" ] }, "ContentHeaders": { "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/59a12386-2c13-4b47-b4c2-4ae53e901d52\",\"name\":\"59a12386-2c13-4b47-b4c2-4ae53e901d52\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:54:18.4840726Z\",\"endTime\":\"2020-07-30T10:54:21.9530984Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"a0af3022-7402-4a9c-b7c1-e455ffad20ea\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14", + "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": [ "430", "431", "432" ], - "x-ms-client-request-id": [ "706128d8-bd6c-4eff-90cf-15ffa6ecfafd", "706128d8-bd6c-4eff-90cf-15ffa6ecfafd", "706128d8-bd6c-4eff-90cf-15ffa6ecfafd" ], + "x-ms-unique-id": [ "429", "430", "431" ], + "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": [ "ba6cf2ff-7826-4ae3-b132-46eecb890c3f" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "8553a7ad-6bdf-49a0-bb09-dcd693aac075" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105449Z:8553a7ad-6bdf-49a0-bb09-dcd693aac075" ], + "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, 30 Jul 2020 10:54:49 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf\",\"name\":\"testcluster5arkid/testdatabaseani9hf\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabaseani9hf?api-version=2020-06-14", + "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": [ "433" ], - "x-ms-client-request-id": [ "c88e35aa-38fa-4b74-9778-a66c3f7f0309" ], + "x-ms-unique-id": [ "432" ], + "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/faa5d8a0-953a-4eb0-a931-5ab9d3cf5aa5?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/faa5d8a0-953a-4eb0-a931-5ab9d3cf5aa5?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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/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": [ "14998" ], - "x-ms-request-id": [ "a903211c-c9e6-47e4-9a2b-1dcec16dc0e6" ], - "x-ms-correlation-request-id": [ "a903211c-c9e6-47e4-9a2b-1dcec16dc0e6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105449Z:a903211c-c9e6-47e4-9a2b-1dcec16dc0e6" ], + "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, 30 Jul 2020 10:54:49 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/faa5d8a0-953a-4eb0-a931-5ab9d3cf5aa5?api-version=2020-06-14+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/faa5d8a0-953a-4eb0-a931-5ab9d3cf5aa5?api-version=2020-06-14", + "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": [ "433", "434" ], - "x-ms-client-request-id": [ "c88e35aa-38fa-4b74-9778-a66c3f7f0309", "c88e35aa-38fa-4b74-9778-a66c3f7f0309" ], + "x-ms-unique-id": [ "432", "433" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "295" ], - "x-ms-request-id": [ "33e9909e-84d1-4541-bcf7-fedae6a5e169" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "1bf66818-8bf2-44e7-90cb-bc2ae68ddab3" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105520Z:1bf66818-8bf2-44e7-90cb-bc2ae68ddab3" ], + "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, 30 Jul 2020 10:55:19 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:50:25 GMT" ] }, "ContentHeaders": { "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/faa5d8a0-953a-4eb0-a931-5ab9d3cf5aa5\",\"name\":\"faa5d8a0-953a-4eb0-a931-5ab9d3cf5aa5\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:54:49.7095819Z\",\"endTime\":\"2020-07-30T10:54:52.4531091Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"649be3a6-7fd5-4123-ac43-e6e653538c94\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/faa5d8a0-953a-4eb0-a931-5ab9d3cf5aa5?api-version=2020-06-14\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/faa5d8a0-953a-4eb0-a931-5ab9d3cf5aa5?api-version=2020-06-14\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": [ "433", "434", "435" ], - "x-ms-client-request-id": [ "c88e35aa-38fa-4b74-9778-a66c3f7f0309", "c88e35aa-38fa-4b74-9778-a66c3f7f0309", "c88e35aa-38fa-4b74-9778-a66c3f7f0309" ], + "x-ms-unique-id": [ "432", "433", "434" ], + "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": [ "6a62a686-049d-44fc-a5ff-3932fb8fd5b7" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "294" ], - "x-ms-correlation-request-id": [ "b983e7ab-8afb-4f22-adfc-b2e901525cd5" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105520Z:b983e7ab-8afb-4f22-adfc-b2e901525cd5" ], + "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, 30 Jul 2020 10:55:19 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 23bf44fdace4..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/listPrincipals?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/listPrincipals?api-version=2020-06-14", + "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": [ "436" ], - "x-ms-client-request-id": [ "b2a0fbda-c7de-4fc9-80a8-c5ed4637e2f4" ], + "x-ms-unique-id": [ "435" ], + "x-ms-client-request-id": [ "2bdd699a-d853-4336-a8a5-877143eba8ce" ], "CommandName": [ "Get-AzKustoDatabasePrincipal" ], "FullCommandName": [ "Get-AzKustoDatabasePrincipal_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,34 +22,34 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "75503219-8cbf-4539-94cc-fc7a633b360a" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "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": [ "499917a1-fcd9-4b73-8eb5-c9f219067e3e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105521Z:499917a1-fcd9-4b73-8eb5-c9f219067e3e" ], + "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, 30 Jul 2020 10:55:20 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:50:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "464" ], + "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\":\"Assaf Taubenfeld\",\"role\":\"Admin\",\"type\":\"User\",\"fqn\":\"aaduser=53d8fc23-618e-49fa-ae3f-ae65cc60aa37;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"astauben@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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/removePrincipals?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/removePrincipals?api-version=2020-06-14", - "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": { @@ -58,34 +58,34 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ "00f15f2f-0979-4c22-bd37-b4aba6779e34" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "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": [ "3122379f-2dd4-45d8-8cbe-e6aa49dab359" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105521Z:3122379f-2dd4-45d8-8cbe-e6aa49dab359" ], + "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, 30 Jul 2020 10:55:21 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:50:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "227" ], + "Content-Length": [ "248" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"name\":\"Assaf Taubenfeld\",\"role\":\"Admin\",\"type\":\"User\",\"fqn\":\"aaduser=53d8fc23-618e-49fa-ae3f-ae65cc60aa37;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"astauben@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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/addPrincipals?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/addPrincipals?api-version=2020-06-14", - "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": { @@ -94,22 +94,22 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-request-id": [ "cf83b31a-12d7-4263-a59e-aea80917055b" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "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": [ "5cd4f306-9eb4-484c-9646-1e069a150ef3" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105522Z:5cd4f306-9eb4-484c-9646-1e069a150ef3" ], + "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, 30 Jul 2020 10:55:22 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:50:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "464" ], + "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\":\"Assaf Taubenfeld\",\"role\":\"Admin\",\"type\":\"User\",\"fqn\":\"aaduser=53d8fc23-618e-49fa-ae3f-ae65cc60aa37;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"astauben@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 d2e82ebacb08..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "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": [ "cc87fcd7-bdd0-436c-b377-7fe7a92bce0b" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5c801763-7fea-4183-8a37-69946729c02e?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "199" ], - "x-ms-correlation-request-id": [ "ee026ed7-e34b-422d-a9fa-48ef0174913d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105523Z:ee026ed7-e34b-422d-a9fa-48ef0174913d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], + "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, 30 Jul 2020 10:55:23 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/testdatabase5arkid/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/5c801763-7fea-4183-8a37-69946729c02e?api-version=2020-06-14+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/5c801763-7fea-4183-8a37-69946729c02e?api-version=2020-06-14", + "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": [ "439", "440" ], - "x-ms-client-request-id": [ "339ca54a-edce-47cf-b9a0-9ad9def74aa7", "339ca54a-edce-47cf-b9a0-9ad9def74aa7" ], + "x-ms-unique-id": [ "438", "439" ], + "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": [ "293" ], - "x-ms-request-id": [ "d6a3d7e7-0046-47e8-a873-19c5390034f3" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "d8b490fb-e9e6-4c30-a77c-a1436847b32e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105554Z:d8b490fb-e9e6-4c30-a77c-a1436847b32e" ], + "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, 30 Jul 2020 10:55:53 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:50:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "503" ], + "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/5c801763-7fea-4183-8a37-69946729c02e\",\"name\":\"5c801763-7fea-4183-8a37-69946729c02e\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:55:23.6824748Z\",\"endTime\":\"2020-07-30T10:55:23.7919064Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseAddPrincipals\",\"RootActivityId\":\"a4e5eeee-1b4e-4472-9fb4-9c23a9e17341\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "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": [ "439", "440", "441" ], - "x-ms-client-request-id": [ "339ca54a-edce-47cf-b9a0-9ad9def74aa7", "339ca54a-edce-47cf-b9a0-9ad9def74aa7", "339ca54a-edce-47cf-b9a0-9ad9def74aa7" ], + "x-ms-unique-id": [ "438", "439", "440" ], + "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": [ "eebcc901-0464-49c4-a274-6dbb3e69d88d" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "9fb31887-fe40-4677-b6f4-f80b62614b58" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105554Z:9fb31887-fe40-4677-b6f4-f80b62614b58" ], + "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, 30 Jul 2020 10:55:53 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "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": [ "442" ], - "x-ms-client-request-id": [ "fcec8462-5e38-4c36-a3b5-65abdff16aa2" ], + "x-ms-unique-id": [ "441" ], + "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/2f7a6c8b-5c57-466d-9cae-6430e62dee1b?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/2f7a6c8b-5c57-466d-9cae-6430e62dee1b?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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/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": [ "14997" ], - "x-ms-request-id": [ "70cdfdd9-6767-4acf-a15f-838524214c47" ], - "x-ms-correlation-request-id": [ "70cdfdd9-6767-4acf-a15f-838524214c47" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105555Z:70cdfdd9-6767-4acf-a15f-838524214c47" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14986" ], + "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, 30 Jul 2020 10:55:54 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/2f7a6c8b-5c57-466d-9cae-6430e62dee1b?api-version=2020-06-14+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/2f7a6c8b-5c57-466d-9cae-6430e62dee1b?api-version=2020-06-14", + "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": [ "442", "443" ], - "x-ms-client-request-id": [ "fcec8462-5e38-4c36-a3b5-65abdff16aa2", "fcec8462-5e38-4c36-a3b5-65abdff16aa2" ], + "x-ms-unique-id": [ "441", "442" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "292" ], - "x-ms-request-id": [ "fd97a7f6-6f8e-4563-8985-5d4a5d4e9034" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "cc94b87a-e42e-4637-8502-2ce656f0e22c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105625Z:cc94b87a-e42e-4637-8502-2ce656f0e22c" ], + "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, 30 Jul 2020 10:56:24 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:51:30 GMT" ] }, "ContentHeaders": { "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/2f7a6c8b-5c57-466d-9cae-6430e62dee1b\",\"name\":\"2f7a6c8b-5c57-466d-9cae-6430e62dee1b\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:55:55.0295074Z\",\"endTime\":\"2020-07-30T10:55:55.1232688Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDropPrincipals\",\"RootActivityId\":\"7df1ad6c-1ac3-45fe-a5c3-fdd52c606bb7\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/2f7a6c8b-5c57-466d-9cae-6430e62dee1b?api-version=2020-06-14\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/2f7a6c8b-5c57-466d-9cae-6430e62dee1b?api-version=2020-06-14\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": [ "442", "443", "444" ], - "x-ms-client-request-id": [ "fcec8462-5e38-4c36-a3b5-65abdff16aa2", "fcec8462-5e38-4c36-a3b5-65abdff16aa2", "fcec8462-5e38-4c36-a3b5-65abdff16aa2" ], + "x-ms-unique-id": [ "441", "442", "443" ], + "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": [ "c0aacffb-3ccd-48fd-ade5-1fc2b97fd030" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "291" ], - "x-ms-correlation-request-id": [ "4ba258f4-a44c-4b9f-a090-429fe96a5651" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105625Z:4ba258f4-a44c-4b9f-a090-429fe96a5651" ], + "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, 30 Jul 2020 10:56:24 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 439982df2b6b..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/stop?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/stop?api-version=2020-06-14", + "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": [ "449" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721" ], + "x-ms-unique-id": [ "450" ], + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "b75da5cd-23ba-481c-80f0-bece4913d3ac" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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/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": [ "1196" ], - "x-ms-correlation-request-id": [ "527bd0eb-452f-4f77-a852-e22242b1431f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105659Z:527bd0eb-452f-4f77-a852-e22242b1431f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], + "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, 30 Jul 2020 10:56:58 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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "x-ms-unique-id": [ "450", "451" ], + "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": [ "289" ], - "x-ms-request-id": [ "8dc333e4-ba59-40a0-b48a-521f1bcb30ce" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "f6133bd3-4770-4474-a59d-62be22bff3dc" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105729Z:f6133bd3-4770-4474-a59d-62be22bff3dc" ], + "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, 30 Jul 2020 10:57:29 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:53:04 GMT" ] }, "ContentHeaders": { "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "x-ms-unique-id": [ "450", "451", "452" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "fe972a6b-ead0-4e6d-8094-a40f6c4d04cc" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "4a6c7896-e92f-4af0-a388-ce46b2c5b516" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105800Z:4a6c7896-e92f-4af0-a388-ce46b2c5b516" ], + "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, 30 Jul 2020 10:57:59 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:53:35 GMT" ] }, "ContentHeaders": { "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "x-ms-unique-id": [ "450", "451", "452", "453" ], + "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": [ "287" ], - "x-ms-request-id": [ "f891d192-771a-4c98-874b-69a548d766d0" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "0957629a-8c94-477c-a4da-f674aafbcab1" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105830Z:0957629a-8c94-477c-a4da-f674aafbcab1" ], + "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, 30 Jul 2020 10:58:30 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:54:05 GMT" ] }, "ContentHeaders": { "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "x-ms-unique-id": [ "450", "451", "452", "453", "454" ], + "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": [ "286" ], - "x-ms-request-id": [ "ed8f31c9-c37e-4275-a249-0dec6dd6f2ab" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "33cba3c2-1d55-41ce-abe0-7a22034fe262" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T105902Z:33cba3c2-1d55-41ce-abe0-7a22034fe262" ], + "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, 30 Jul 2020 10:59:01 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:54:35 GMT" ] }, "ContentHeaders": { "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455" ], + "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": [ "723e6641-9f68-47a8-84bb-a26cfe986a88" ], - "x-ms-request-id": [ "9eb658aa-f47c-4e8b-9bbd-5e8d6ec7921d" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "NORTHEUROPE:20200730T105932Z:723e6641-9f68-47a8-84bb-a26cfe986a88" ], + "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, 30 Jul 2020 10:59:31 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:55:05 GMT" ] }, "ContentHeaders": { "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456" ], + "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": [ "288" ], - "x-ms-request-id": [ "c003e0e1-a5fd-4f06-98fb-93c552d7e16e" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "8d097bae-8438-49d5-b086-fa639943dd46" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110003Z:8d097bae-8438-49d5-b086-fa639943dd46" ], + "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, 30 Jul 2020 11:00:02 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:55:36 GMT" ] }, "ContentHeaders": { "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457" ], + "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": [ "287" ], - "x-ms-request-id": [ "f97dc4dd-77bd-43df-bf99-0f0e0030c490" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "6b6c9574-80b3-444d-9de5-4c90241b4ccc" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110033Z:6b6c9574-80b3-444d-9de5-4c90241b4ccc" ], + "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, 30 Jul 2020 11:00:32 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:56:06 GMT" ] }, "ContentHeaders": { "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "16e3fb72-a05e-4684-a2ce-33e759b03b55" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "33f28a1b-fc79-4f45-a027-fc5eb7a39383" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110103Z:33f28a1b-fc79-4f45-a027-fc5eb7a39383" ], + "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, 30 Jul 2020 11:01:03 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:56:36 GMT" ] }, "ContentHeaders": { "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459" ], + "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": [ "285" ], - "x-ms-request-id": [ "7ecc9466-b123-4be9-97c4-482d4469f912" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "3b7d1336-c27c-4f91-81b8-7656ba021802" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110134Z:3b7d1336-c27c-4f91-81b8-7656ba021802" ], + "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, 30 Jul 2020 11:01:33 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:57:07 GMT" ] }, "ContentHeaders": { "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460" ], + "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": [ "284" ], - "x-ms-request-id": [ "30d344ee-5ddb-420b-a771-8281e4acc6bd" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "ede46f1e-b11a-4f96-8ee0-55a0579a7ef3" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110204Z:ede46f1e-b11a-4f96-8ee0-55a0579a7ef3" ], + "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, 30 Jul 2020 11:02:03 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:57:37 GMT" ] }, "ContentHeaders": { "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "67b423e3-8eea-4579-b921-38758ae8fa24" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "b445b4e9-6d4a-4047-a6b2-5ae4361bf5ab" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110234Z:b445b4e9-6d4a-4047-a6b2-5ae4361bf5ab" ], + "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, 30 Jul 2020 11:02:33 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:58:07 GMT" ] }, "ContentHeaders": { "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462" ], + "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": [ "282" ], - "x-ms-request-id": [ "97fb1031-95b0-4cb2-a1e9-6e0c6edc2525" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "3a3b17b2-63d2-4f59-8fc4-6d8dde5b5345" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110304Z:3a3b17b2-63d2-4f59-8fc4-6d8dde5b5345" ], + "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, 30 Jul 2020 11:03:04 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:58:36 GMT" ] }, "ContentHeaders": { "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463" ], + "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": [ "281" ], - "x-ms-request-id": [ "948ca30c-275d-43b0-b23f-be595eea935f" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "48d5bb7f-a3ba-4e14-8427-5895ca7af264" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110335Z:48d5bb7f-a3ba-4e14-8427-5895ca7af264" ], + "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, 30 Jul 2020 11:03:34 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:59:07 GMT" ] }, "ContentHeaders": { "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "ca129399-f115-4b97-92fe-5bf566402341" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "64be172a-c0f1-4cb2-8a91-fd89a2812473" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110405Z:64be172a-c0f1-4cb2-8a91-fd89a2812473" ], + "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, 30 Jul 2020 11:04:04 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:59:38 GMT" ] }, "ContentHeaders": { "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "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": [ "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": [ "279" ], - "x-ms-request-id": [ "196deae6-2253-4a94-abab-e0d2f4e09769" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "f4452965-0530-473f-a0fb-9c262ed0f3ab" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110435Z:f4452965-0530-473f-a0fb-9c262ed0f3ab" ], + "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, 30 Jul 2020 11:04:34 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:00:08 GMT" ] }, "ContentHeaders": { "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "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": [ "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": [ "289" ], - "x-ms-request-id": [ "ad14b06b-3316-433d-a375-ffd2d6b87bf0" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "8766e811-671a-4c73-9275-0476dc28c551" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110505Z:8766e811-671a-4c73-9275-0476dc28c551" ], + "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, 30 Jul 2020 11:05:05 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:00:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], + "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], + "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": [ "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,78 +718,76 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "93e96d4a-9977-4d6b-80c6-1eaba6fd600c" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "6278934b-aca3-411d-8b68-0768774dbd23" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110536Z:6278934b-aca3-411d-8b68-0768774dbd23" ], + "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, 30 Jul 2020 11:05:35 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:00:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], - "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "Content": null } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+19": { + "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": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], - "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": [ "468" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "35f9f183-d244-4a41-82fc-e57df5ddd964" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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/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-correlation-request-id": [ "90e36f41-2fc8-41c6-8b4f-1a72819bcdbe" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110606Z:90e36f41-2fc8-41c6-8b4f-1a72819bcdbe" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], + "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, 30 Jul 2020 11:06:05 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:00:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], - "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "Content": null } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+20": { + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467", "468" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], - "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": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -801,36 +799,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "013c6fa1-b81b-4a14-bc67-3a3413920cef" ], - "x-ms-request-id": [ "dae114e8-df28-4152-a63e-8d5f30849534" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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-routing-request-id": [ "NORTHEUROPE:20200730T110636Z:013c6fa1-b81b-4a14-bc67-3a3413920cef" ], + "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, 30 Jul 2020 11:06:36 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:01:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], + "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+21": { + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "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": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], - "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": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -843,35 +841,35 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "4becd043-2d16-4c89-8e45-468da107bfc0" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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-correlation-request-id": [ "0956994a-f8df-4236-82dd-423581d46dc3" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110707Z:0956994a-f8df-4236-82dd-423581d46dc3" ], + "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, 30 Jul 2020 11:07:06 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:01:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], + "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467", "468", "469", "470" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], - "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": [ "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" ], + "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": { @@ -884,35 +882,35 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "acc60d0f-1264-4296-8271-268eb58d9184" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "70f8e829-e4b0-45f8-8079-ae0ef16dd4e3" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110740Z:70f8e829-e4b0-45f8-8079-ae0ef16dd4e3" ], + "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, 30 Jul 2020 11:07:39 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:02:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], + "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467", "468", "469", "470", "471" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], - "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": [ "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" ], + "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": { @@ -925,35 +923,35 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "f9e646f4-b443-46d3-9ea8-9fd214cef1cb" ], + "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": [ "459271dc-be9f-4860-9781-0f8f73f1094d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110811Z:459271dc-be9f-4860-9781-0f8f73f1094d" ], + "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, 30 Jul 2020 11:08:11 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:02:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], + "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467", "468", "469", "470", "471", "472" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], - "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": [ "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" ], + "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": { @@ -966,35 +964,35 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "2954dcc5-ddec-4b45-a2ac-768c8cb2d266" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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-correlation-request-id": [ "099e5786-200e-4a78-9d51-37d8071d277e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110843Z:099e5786-200e-4a78-9d51-37d8071d277e" ], + "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, 30 Jul 2020 11:08:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:03:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], + "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467", "468", "469", "470", "471", "472", "473" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], - "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", "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", "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", "__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" ], + "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" ], + "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": { @@ -1007,35 +1005,35 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "de68ef5e-7566-43cf-9a1d-d6a999afe6d6" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "9bcc48c0-95af-4b36-8c49-a85058641e7f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110916Z:9bcc48c0-95af-4b36-8c49-a85058641e7f" ], + "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, 30 Jul 2020 11:09:16 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:03:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], + "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Running\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T10:57:00.4675241Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14+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+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467", "468", "469", "470", "471", "472", "473", "474" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], - "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", "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", "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", "__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" ], + "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" ], + "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": { @@ -1048,35 +1046,35 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "8d7a22c3-de30-4d5b-a0d0-c4a75cb66f49" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "18a1c97d-13a4-4573-bbf9-99bd58ff5c7a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110946Z:18a1c97d-13a4-4573-bbf9-99bd58ff5c7a" ], + "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, 30 Jul 2020 11:09:46 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:04:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "496" ], + "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/683f1ec7-c164-48c0-8199-862a4eb70529\",\"name\":\"683f1ec7-c164-48c0-8199-862a4eb70529\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T10:56:59.6080877Z\",\"endTime\":\"2020-07-30T11:09:40.7150558Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"56f8bf3e-9a14-4b42-844b-354e1314c280\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14\u0026operationResultResponseType=Location+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+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/683f1ec7-c164-48c0-8199-862a4eb70529?api-version=2020-06-14\u0026operationResultResponseType=Location", + "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": [ "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467", "468", "469", "470", "471", "472", "473", "474", "475" ], - "x-ms-client-request-id": [ "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721", "0aaacc40-13ed-4506-9840-789374fa0721" ], - "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", "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", "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", "__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" ], + "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" ], + "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": { @@ -1087,76 +1085,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "93c65b28-07cd-4744-9573-247ea09d5b0a" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], + "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-correlation-request-id": [ "78fcd9a3-fce8-47f8-8bd6-8b61b73e2138" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110947Z:78fcd9a3-fce8-47f8-8bd6-8b61b73e2138" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:09:46 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null - } - }, - "Start-AzKustoCluster+[NoContext]+Start+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/start?api-version=2020-06-14+28": { - "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/start?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "476" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "344dd837-70a3-43da-aaf6-46303186a033" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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-ratelimit-remaining-subscription-writes": [ "1195" ], - "x-ms-correlation-request-id": [ "7ce07d99-6f03-4874-aaac-f6b7cc8788a7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T110950Z:7ce07d99-6f03-4874-aaac-f6b7cc8788a7" ], + "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, 30 Jul 2020 11:09:50 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:04:41 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/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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14+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+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", + "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": [ "476", "477" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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": [ "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" ], + "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": { @@ -1168,36 +1127,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], + "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" ], - "x-ms-request-id": [ "0e0c86ef-e5f7-414d-bd3f-ed9e4fd693bf" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "636c13ca-00c8-477b-922f-88ad6d86e5ba" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111021Z:636c13ca-00c8-477b-922f-88ad6d86e5ba" ], + "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, 30 Jul 2020 11:10:21 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:05:11 GMT" ] }, "ContentHeaders": { "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14+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+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", + "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": [ "476", "477", "478" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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": [ "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" ], + "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": { @@ -1210,35 +1169,35 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "101a338b-d2a8-487d-9df3-d45f64b7c393" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "e040b9df-0737-4a94-a8c4-01f162a642b8" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111052Z:e040b9df-0737-4a94-a8c4-01f162a642b8" ], + "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, 30 Jul 2020 11:10:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:05:42 GMT" ] }, "ContentHeaders": { "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14+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+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", + "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": [ "476", "477", "478", "479" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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": [ "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" ], + "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": { @@ -1251,35 +1210,35 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "d7f4b8f1-92b5-400b-ad79-c86ba96bced4" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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-correlation-request-id": [ "45350d35-2dd8-424a-afdb-261d2ef0021a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111122Z:45350d35-2dd8-424a-afdb-261d2ef0021a" ], + "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, 30 Jul 2020 11:11:22 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:06:12 GMT" ] }, "ContentHeaders": { "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14+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+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", + "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": [ "476", "477", "478", "479", "480" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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": [ "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" ], + "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": { @@ -1292,35 +1251,35 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "c636957c-14db-4bef-b5c5-44455b9e6b02" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "34a32210-e229-422b-9f77-9467235a36ce" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111153Z:34a32210-e229-422b-9f77-9467235a36ce" ], + "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, 30 Jul 2020 11:11:52 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:06:42 GMT" ] }, "ContentHeaders": { "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14+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+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", + "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": [ "476", "477", "478", "479", "480", "481" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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": [ "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" ], + "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": { @@ -1333,731 +1292,35 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "ef9658d2-fc6d-4516-9d87-c256b17a9c36" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "7fd1555f-e6f9-4ad6-bc07-c69e0857079b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111223Z:7fd1555f-e6f9-4ad6-bc07-c69e0857079b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:12:22 GMT" ] - }, - "ContentHeaders": { - "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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": { - } - }, - "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": [ "28e3fff4-eb93-4229-a8c2-bbff187d2bff" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "84feb009-c906-4822-8da7-7d1a42bd0c91" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111255Z:84feb009-c906-4822-8da7-7d1a42bd0c91" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:12:55 GMT" ] - }, - "ContentHeaders": { - "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "3571a11f-6f93-4dd3-b635-0d5aa18150a4" ], - "x-ms-request-id": [ "d68cf0d8-1cfd-4eaa-97a7-3f3d514e0713" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111331Z:3571a11f-6f93-4dd3-b635-0d5aa18150a4" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:13:30 GMT" ] - }, - "ContentHeaders": { - "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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": { - } - }, - "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": [ "983d6691-1707-44d3-bf2f-c7b68ab8b421" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5359f1ef-1256-4f9b-801e-0eff78bc170f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111402Z:5359f1ef-1256-4f9b-801e-0eff78bc170f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:14:02 GMT" ] - }, - "ContentHeaders": { - "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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": [ "280" ], - "x-ms-request-id": [ "7852f592-6cb1-4590-b209-95c2f40f4529" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "339b39ae-fe88-45e3-b9ad-291488e0f931" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111432Z:339b39ae-fe88-45e3-b9ad-291488e0f931" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:14:32 GMT" ] - }, - "ContentHeaders": { - "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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": [ "290" ], - "x-ms-request-id": [ "f00d60ac-e1f6-41b0-8a65-fdb2438bab89" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e7beaa71-c8d5-40cd-8b55-963e63438f34" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111508Z:e7beaa71-c8d5-40cd-8b55-963e63438f34" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:15:08 GMT" ] - }, - "ContentHeaders": { - "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "9ad4226a-0d06-45f6-a0cd-b8d17000e810" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "32d3ee1b-613d-4b5e-8c45-4f85caba6122" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111539Z:32d3ee1b-613d-4b5e-8c45-4f85caba6122" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:15:39 GMT" ] - }, - "ContentHeaders": { - "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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": [ "288" ], - "x-ms-request-id": [ "7a02ef0c-b977-45b6-b611-cd4629964ddf" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e36ea7c2-e1fa-4c8d-a32d-8a526fdc8787" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111610Z:e36ea7c2-e1fa-4c8d-a32d-8a526fdc8787" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:16:09 GMT" ] - }, - "ContentHeaders": { - "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488", "489" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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": [ "287" ], - "x-ms-request-id": [ "c97623de-da45-4549-b098-ca9a2f49943b" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "99e8a3d7-b9ee-4fdd-a0ca-8af5628b4d25" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111640Z:99e8a3d7-b9ee-4fdd-a0ca-8af5628b4d25" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:16:40 GMT" ] - }, - "ContentHeaders": { - "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488", "489", "490" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "867ffd00-f124-48b5-b1f8-2b42a35eaddd" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "92284fec-8bf9-464f-8edd-dfa6b4d7e74a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111710Z:92284fec-8bf9-464f-8edd-dfa6b4d7e74a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:17:09 GMT" ] - }, - "ContentHeaders": { - "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488", "489", "490", "491" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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": [ "285" ], - "x-ms-request-id": [ "d3d9a616-eea0-4ef0-9efd-802627fa0607" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e3fde608-685d-4b2e-9d50-c360e5347cb8" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111740Z:e3fde608-685d-4b2e-9d50-c360e5347cb8" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:17:40 GMT" ] - }, - "ContentHeaders": { - "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488", "489", "490", "491", "492" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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": [ "284" ], - "x-ms-request-id": [ "516b0289-9aba-4fdd-a14f-9a3e037a9048" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d5f98fc0-db53-435d-b731-8271d1752e23" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111811Z:d5f98fc0-db53-435d-b731-8271d1752e23" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:18:10 GMT" ] - }, - "ContentHeaders": { - "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:10:14.5769956Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488", "489", "490", "491", "492", "493" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "3f057776-839b-4267-90e3-3c469c760b42" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "553be272-4319-4f9f-bccc-7f9eef96bb0e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111841Z:553be272-4319-4f9f-bccc-7f9eef96bb0e" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:18:41 GMT" ] - }, - "ContentHeaders": { - "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/9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"name\":\"9a4c8c24-0732-4454-b317-a4ba6021b4f8\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T11:09:50.7158156Z\",\"endTime\":\"2020-07-30T11:18:14.0819365Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"75990dcf-938f-479a-ae44-fbbb1dc37d05\",\"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/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14\u0026operationResultResponseType=Location+46": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/9a4c8c24-0732-4454-b317-a4ba6021b4f8?api-version=2020-06-14\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488", "489", "490", "491", "492", "493", "494" ], - "x-ms-client-request-id": [ "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12", "a07ed2e2-305d-47ba-a0be-d02abed39e12" ], - "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" ], - "x-ms-request-id": [ "b95159eb-d155-4c5c-a498-9c9ca328dc7c" ], - "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": [ "a319d2d9-a1e2-44b5-9191-7e180e12fe41" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111841Z:a319d2d9-a1e2-44b5-9191-7e180e12fe41" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:18:41 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z?api-version=2020-06-14+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "495" ], - "x-ms-client-request-id": [ "2f9b86e7-d45c-40ed-85b1-914e26d57d8c" ], - "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": [ "db1609f2-d889-478a-8027-e876122caa80" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "45727681-aef0-4cbd-a873-b4e1c81448f0" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111842Z:45727681-aef0-4cbd-a873-b4e1c81448f0" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:18:41 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "794" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z\",\"name\":\"testcluster0whu7z\",\"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://testcluster0whu7z.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster0whu7z.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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/stop?api-version=2020-06-14+2": { - "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/stop?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "496" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "CommandName": [ "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop" ], - "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "4edf99da-f634-48e0-bd44-641c9a756553" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "073921c9-a351-40be-ba69-aa0eaa9115a9" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111842Z:073921c9-a351-40be-ba69-aa0eaa9115a9" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:18:42 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "496", "497" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "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-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "0f560874-e86a-45e5-9685-435329e7b68b" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c16eacaa-cd3b-4520-9205-ad8d26b5a4d0" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111912Z:c16eacaa-cd3b-4520-9205-ad8d26b5a4d0" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 11:19:12 GMT" ] - }, - "ContentHeaders": { - "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "496", "497", "498" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "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": [ "280" ], - "x-ms-request-id": [ "a911d8e5-d3a1-4395-8c6b-e9201703ae51" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "ef72d00c-5c1a-4d8d-9f1e-1730c04e7ab2" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T111943Z:ef72d00c-5c1a-4d8d-9f1e-1730c04e7ab2" ], + "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, 30 Jul 2020 11:19:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:07:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+5": { + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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" ], - "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": [ "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" ], + "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": { @@ -2069,36 +1332,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "4ce312a7-5a12-41a7-a7f1-f0fd7e5a028e" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "76308a10-aafa-4332-9013-03198c7a90bd" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112013Z:76308a10-aafa-4332-9013-03198c7a90bd" ], + "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, 30 Jul 2020 11:20:12 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:07:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+6": { + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499", "500" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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" ], - "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": [ "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" ], + "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": { @@ -2110,36 +1373,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "099a2eac-9433-466f-aafd-b421451413e2" ], - "x-ms-request-id": [ "71260063-d525-4b47-bee9-9ac03f248428" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-routing-request-id": [ "NORTHEUROPE:20200730T112043Z:099a2eac-9433-466f-aafd-b421451413e2" ], + "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, 30 Jul 2020 11:20:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:08:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+7": { + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499", "500", "501" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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" ], - "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": [ "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" ], + "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": { @@ -2151,36 +1414,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "9b23ff6d-a04a-41dc-ab08-20ab5eb46be3" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "5eb282af-b86d-41b1-9efb-be848b4d0b93" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112114Z:5eb282af-b86d-41b1-9efb-be848b4d0b93" ], + "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, 30 Jul 2020 11:21:13 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:08:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+8": { + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499", "500", "501", "502" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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" ], - "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": [ "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" ], + "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": { @@ -2191,37 +1454,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "8ceaf924-706f-4fb4-a4e7-41d64688cbd2" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "8800775c-65c1-4e3c-be0c-88ea798836cb" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112144Z:8800775c-65c1-4e3c-be0c-88ea798836cb" ], + "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, 30 Jul 2020 11:21:43 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:08:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], - "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "Content": null } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+9": { + "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/providers/Microsoft.Kusto/locations/East%20US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499", "500", "501", "502", "503" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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" ], - "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": [ "486" ], + "x-ms-client-request-id": [ "3ed1d881-f349-403e-86a1-141f422cd18c" ], + "CommandName": [ "Get-AzKustoCluster" ], + "FullCommandName": [ "Get-AzKustoCluster_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2232,78 +1493,79 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "f02ed7e7-9408-4646-9588-15ace5471746" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "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": [ "e8fdadc8-9f6c-4135-92ef-59471a097953" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112214Z:e8fdadc8-9f6c-4135-92ef-59471a097953" ], + "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, 30 Jul 2020 11:22:14 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:08:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+10": { + "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": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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" ], - "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": [ "487" ], + "x-ms-client-request-id": [ "924bb347-09df-4f93-9899-cf267a21dc41" ], + "CommandName": [ "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_Stop" ], + "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": [ "283" ], - "x-ms-request-id": [ "3cdb39cc-d4c7-497d-94ea-4e63f55c98f2" ], + "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-correlation-request-id": [ "8dd8d7ff-59b5-46b0-8ce6-13774638f9da" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112245Z:8dd8d7ff-59b5-46b0-8ce6-13774638f9da" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], + "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, 30 Jul 2020 11:22:44 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:08:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], - "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "Content": null } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+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+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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" ], - "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": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2315,36 +1577,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "fe26e12b-eb9e-4d96-aa03-f7e44f36f540" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "e6921a7d-ed77-43a2-9126-072811c5e005" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112315Z:e6921a7d-ed77-43a2-9126-072811c5e005" ], + "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, 30 Jul 2020 11:23:14 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:09:15 GMT" ] }, "ContentHeaders": { "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+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+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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" ], - "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": [ "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" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2356,36 +1618,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "f8fab3a3-652d-4a44-a86a-cd1e3f7e5277" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "1b9d7af0-dd01-4ab6-8bc2-691b47f76143" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112345Z:1b9d7af0-dd01-4ab6-8bc2-691b47f76143" ], + "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, 30 Jul 2020 11:23:45 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:09:44 GMT" ] }, "ContentHeaders": { "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+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+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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" ], - "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": [ "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" ], + "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": { @@ -2397,36 +1659,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "1dc949da-f4d0-42bd-965e-aa2b3e767811" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "2576f288-390d-4bd2-8827-eaeda3107833" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112415Z:2576f288-390d-4bd2-8827-eaeda3107833" ], + "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, 30 Jul 2020 11:24:15 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:10:15 GMT" ] }, "ContentHeaders": { "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+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+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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" ], - "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": [ "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" ], + "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": { @@ -2438,36 +1700,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "778b04c4-c279-45ee-888c-babcb5e1394d" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "fc5b776a-981b-49c0-88f0-254c907721e4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112446Z:fc5b776a-981b-49c0-88f0-254c907721e4" ], + "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, 30 Jul 2020 11:24:45 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:10:45 GMT" ] }, "ContentHeaders": { "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+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+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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" ], + "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" ], + "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": { @@ -2479,36 +1741,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "2610a4f9-734b-436c-8d84-ef361590921b" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "94f5f69b-229c-4b20-a66d-ee824fbd99ff" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112516Z:94f5f69b-229c-4b20-a66d-ee824fbd99ff" ], + "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, 30 Jul 2020 11:25:15 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:11:15 GMT" ] }, "ContentHeaders": { "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+16": { + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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": [ "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" ], + "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": { @@ -2520,36 +1782,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "2a1e4d57-5282-4645-9686-f7660f943042" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "841b67c1-db43-4eef-8e0b-6886453e0129" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112546Z:841b67c1-db43-4eef-8e0b-6886453e0129" ], + "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, 30 Jul 2020 11:25:46 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:11:46 GMT" ] }, "ContentHeaders": { "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+17": { + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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": [ "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" ], + "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": { @@ -2561,36 +1823,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "ac119746-c9ce-4528-8955-39fa557c96d8" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "609913a2-9e1c-4b96-a9df-7d6bb8d3813e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112616Z:609913a2-9e1c-4b96-a9df-7d6bb8d3813e" ], + "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, 30 Jul 2020 11:26:16 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:12:17 GMT" ] }, "ContentHeaders": { "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+18": { + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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": [ "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" ], + "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": { @@ -2602,36 +1864,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "da856ad8-9a1a-44b2-8a63-715785b9457b" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "09c27b11-ec43-4cb7-bc0f-ea1696a0664a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112647Z:09c27b11-ec43-4cb7-bc0f-ea1696a0664a" ], + "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, 30 Jul 2020 11:26:46 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:12:46 GMT" ] }, "ContentHeaders": { "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+19": { + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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": [ "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" ], + "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": { @@ -2643,36 +1905,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "d6b4b071-bfe3-4df9-bd40-fc6d3b023117" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "925f9d0e-495f-47b0-941d-f25670d9e109" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112717Z:925f9d0e-495f-47b0-941d-f25670d9e109" ], + "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, 30 Jul 2020 11:27:16 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:13:16 GMT" ] }, "ContentHeaders": { "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+20": { + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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": [ "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" ], + "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": { @@ -2684,36 +1946,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "048c1967-9bf5-4fa2-8bca-ae2f676d3f3b" ], - "x-ms-request-id": [ "4fb8b348-68c1-41bb-ab86-3f15b69be81d" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "NORTHEUROPE:20200730T112747Z:048c1967-9bf5-4fa2-8bca-ae2f676d3f3b" ], + "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, 30 Jul 2020 11:27:46 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:13:47 GMT" ] }, "ContentHeaders": { "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+21": { + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "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": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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": [ "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" ], + "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": { @@ -2725,36 +1987,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "c5ed2129-e1e6-4025-90ed-54d58589e4de" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "939f971a-0fbd-4595-8702-2fd19d26e700" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112818Z:939f971a-0fbd-4595-8702-2fd19d26e700" ], + "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, 30 Jul 2020 11:28:17 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:14:17 GMT" ] }, "ContentHeaders": { "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:18:43.4735224Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14+22": { + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14", + "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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514", "515", "516" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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": [ "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" ], + "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": { @@ -2766,36 +2028,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "1706fc28-221b-44aa-84a1-ca1cf41ef3b9" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "068d24e3-cd23-4c72-9173-728e41b29042" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112848Z:068d24e3-cd23-4c72-9173-728e41b29042" ], + "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, 30 Jul 2020 11:28:47 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:14:48 GMT" ] }, "ContentHeaders": { "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"name\":\"06d89ec1-4129-4b98-9358-6ebac2bdce1f\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T11:18:42.5203243Z\",\"endTime\":\"2020-07-30T11:28:20.8113629Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"b18ae284-a294-4a64-9add-7f0851588b20\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14\u0026operationResultResponseType=Location+23": { + "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/06d89ec1-4129-4b98-9358-6ebac2bdce1f?api-version=2020-06-14\u0026operationResultResponseType=Location", + "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": [ "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514", "515", "516", "517" ], - "x-ms-client-request-id": [ "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54", "3bee9fc9-c0fe-49b6-8426-8dece8827c54" ], - "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": [ "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" ], + "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": { @@ -2806,15 +2068,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "88ced1b0-bd15-4a49-9feb-2793e7125d9d" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-correlation-request-id": [ "c8e144f4-2461-433d-a9ec-78a1194f140e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112848Z:c8e144f4-2461-433d-a9ec-78a1194f140e" ], + "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, 30 Jul 2020 11:28:47 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:14:48 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2823,14 +2085,14 @@ "Content": null } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/start?api-version=2020-06-14+24": { + "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": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/start?api-version=2020-06-14", + "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": [ "518" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "x-ms-unique-id": [ "501" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], "CommandName": [ "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2845,17 +2107,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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "2c1e44dc-3462-44df-a573-1e348c7b2925" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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/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-ratelimit-remaining-subscription-writes": [ "1193" ], - "x-ms-correlation-request-id": [ "de8ac61d-d0d0-4aaa-b7db-4f18aa6f3132" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112849Z:de8ac61d-d0d0-4aaa-b7db-4f18aa6f3132" ], + "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, 30 Jul 2020 11:28:48 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:14:48 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2864,14 +2126,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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+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+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", + "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": [ "518", "519" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -2887,32 +2149,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "9022c6d0-f763-4d97-b135-190106cb9d41" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "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": [ "7b440db1-70a7-4ba2-b80f-4fd7ff1b9587" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112919Z:7b440db1-70a7-4ba2-b80f-4fd7ff1b9587" ], + "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, 30 Jul 2020 11:29:19 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:15:18 GMT" ] }, "ContentHeaders": { "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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+26": { + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", + "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": [ "518", "519", "520" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -2928,32 +2190,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "3db12317-378d-4b22-b56a-4293b30116e7" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "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-correlation-request-id": [ "6a70a7df-d277-4590-8b52-198fd3b4774b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T112949Z:6a70a7df-d277-4590-8b52-198fd3b4774b" ], + "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, 30 Jul 2020 11:29:49 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:15:49 GMT" ] }, "ContentHeaders": { "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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+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+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", + "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": [ "518", "519", "520", "521" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -2969,32 +2231,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "093c23c0-7aa2-42f0-a29c-421de4e73986" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "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": [ "f3c00199-c9e3-42e0-bac5-1bee2b675048" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113019Z:f3c00199-c9e3-42e0-bac5-1bee2b675048" ], + "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, 30 Jul 2020 11:30:19 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:16:18 GMT" ] }, "ContentHeaders": { "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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+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+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", + "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": [ "518", "519", "520", "521", "522" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -3010,32 +2272,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "196b0226-32a9-4dc7-852f-ee6c065861df" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "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": [ "3fec7192-9228-4855-be75-6bc88d347d8b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113050Z:3fec7192-9228-4855-be75-6bc88d347d8b" ], + "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, 30 Jul 2020 11:30:49 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:16:49 GMT" ] }, "ContentHeaders": { "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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+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+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", + "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": [ "518", "519", "520", "521", "522", "523" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -3051,32 +2313,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "ac71d1fa-2fb0-4229-803e-d90dae0173dc" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "cea7bacb-e1f5-4696-8072-14338b069f7d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113120Z:cea7bacb-e1f5-4696-8072-14338b069f7d" ], + "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, 30 Jul 2020 11:31:19 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:17:19 GMT" ] }, "ContentHeaders": { "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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+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+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", + "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": [ "518", "519", "520", "521", "522", "523", "524" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -3092,32 +2354,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "4c745815-7049-422d-9090-3721d4ecfb56" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "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-correlation-request-id": [ "a7d2b126-97f1-4be3-9cec-6339faf1d10e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113150Z:a7d2b126-97f1-4be3-9cec-6339faf1d10e" ], + "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, 30 Jul 2020 11:31:50 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:17:50 GMT" ] }, "ContentHeaders": { "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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+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+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", + "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": [ "518", "519", "520", "521", "522", "523", "524", "525" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -3133,32 +2395,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "7fff05c9-eac2-4c58-baf1-9303231516eb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "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": [ "237d47d7-3851-41c6-bb0e-48e5d7a5d2e3" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113220Z:237d47d7-3851-41c6-bb0e-48e5d7a5d2e3" ], + "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, 30 Jul 2020 11:32:20 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:18:22 GMT" ] }, "ContentHeaders": { "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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+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+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", + "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": [ "518", "519", "520", "521", "522", "523", "524", "525", "526" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -3174,32 +2436,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "7731654d-69f8-45c7-9e7a-b5374a03d0da" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "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-correlation-request-id": [ "4abe1135-765f-43d7-99c0-2405798194f9" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113251Z:4abe1135-765f-43d7-99c0-2405798194f9" ], + "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, 30 Jul 2020 11:32:50 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:18:51 GMT" ] }, "ContentHeaders": { "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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+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+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", + "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": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -3215,32 +2477,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "6a3a5fff-230d-45ed-b413-a28517937fdd" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "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": [ "75a33d95-a66d-4e93-bd35-8d13ab15d2c2" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113321Z:75a33d95-a66d-4e93-bd35-8d13ab15d2c2" ], + "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, 30 Jul 2020 11:33:21 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:19:22 GMT" ] }, "ContentHeaders": { "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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+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+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", + "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": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -3256,32 +2518,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "90849871-f5cd-435d-a61c-aef6a49adaa4" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "80222358-8f0f-42bc-a2c9-d70237828b47" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113351Z:80222358-8f0f-42bc-a2c9-d70237828b47" ], + "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, 30 Jul 2020 11:33:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:19:52 GMT" ] }, "ContentHeaders": { "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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+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+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", + "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": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -3297,32 +2559,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "b3f5ce78-4190-4a87-aff5-7aecb67031ac" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "972c4499-dc28-4a0b-8860-d3ce47e679f0" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113421Z:972c4499-dc28-4a0b-8860-d3ce47e679f0" ], + "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, 30 Jul 2020 11:34:21 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:20:23 GMT" ] }, "ContentHeaders": { "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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+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+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", + "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": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -3338,32 +2600,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "c6673378-7931-47fb-bb59-da3eb2523c9d" ], - "x-ms-request-id": [ "9c566051-952b-4632-adfd-2135737675fa" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-routing-request-id": [ "NORTHEUROPE:20200730T113452Z:c6673378-7931-47fb-bb59-da3eb2523c9d" ], + "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, 30 Jul 2020 11:34:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:20:53 GMT" ] }, "ContentHeaders": { "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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+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+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", + "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": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -3379,32 +2641,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "4d527055-2b32-479f-afbe-2e2af05b9e57" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "5e90b53b-435f-41fe-b175-f41d7452294a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113522Z:5e90b53b-435f-41fe-b175-f41d7452294a" ], + "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, 30 Jul 2020 11:35:22 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:21:29 GMT" ] }, "ContentHeaders": { "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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+38": { + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", + "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": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -3420,32 +2682,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "1af58463-f0dc-4b8c-9199-e903d72b9355" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "f4bdef2b-befc-47b6-9bee-3ef5c3284a50" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113553Z:f4bdef2b-befc-47b6-9bee-3ef5c3284a50" ], + "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, 30 Jul 2020 11:35:52 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:22:01 GMT" ] }, "ContentHeaders": { "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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+39": { + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", + "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": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -3461,32 +2723,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "75988371-eb23-479e-ad9b-e62ef30ddf57" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "40f50b18-032b-4caf-bb44-340b1656c367" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113623Z:40f50b18-032b-4caf-bb44-340b1656c367" ], + "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, 30 Jul 2020 11:36:22 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:22:31 GMT" ] }, "ContentHeaders": { "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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Running\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:28:50.5023698Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14+40": { + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14", + "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": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533", "534" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -3502,32 +2764,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "4214a00e-abc0-4330-9da5-cf9b5a1a853b" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "a3f48b10-d2d2-47bd-9fd3-ddd5ced5e310" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113653Z:a3f48b10-d2d2-47bd-9fd3-ddd5ced5e310" ], + "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, 30 Jul 2020 11:36:53 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:23:04 GMT" ] }, "ContentHeaders": { "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/af8aed82-c767-4e08-b45c-7a02f55964de\",\"name\":\"af8aed82-c767-4e08-b45c-7a02f55964de\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T11:28:49.0670696Z\",\"endTime\":\"2020-07-30T11:36:37.3415241Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"f7541907-4819-4412-9953-60ed67e05bb3\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14\u0026operationResultResponseType=Location+41": { + "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/af8aed82-c767-4e08-b45c-7a02f55964de?api-version=2020-06-14\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\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533", "534", "535" ], - "x-ms-client-request-id": [ "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a", "2456df2e-36dd-4874-b7c9-48330bf9180a" ], + "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" ], @@ -3542,15 +2804,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4bde1fe5-2aec-4a39-80d3-5498fe879123" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-correlation-request-id": [ "ffa123c2-669d-4c0a-bcee-c6d5fe6614d4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T113653Z:ffa123c2-669d-4c0a-bcee-c6d5fe6614d4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "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, 30 Jul 2020 11:36:53 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 3e328f5627dc..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/stop?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/stop?api-version=2020-06-14", + "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": [ "536" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], + "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "ce057298-117b-42e2-b0ce-216e495944a7" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "bd4b49ae-77c8-4e07-a9e2-18d24054dc20" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124241Z:bd4b49ae-77c8-4e07-a9e2-18d24054dc20" ], + "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, 30 Jul 2020 12:42:41 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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14+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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", + "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": [ "536", "537" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], + "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": [ "72621da5-e788-4583-860e-8cef80bfa259" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "773a109e-6c3d-4b93-8505-f43c5fd07ceb" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124312Z:773a109e-6c3d-4b93-8505-f43c5fd07ceb" ], + "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, 30 Jul 2020 12:43:11 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:23:43 GMT" ] }, "ContentHeaders": { "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14+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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", + "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": [ "536", "537", "538" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "9d10a073-af6e-4430-b90d-36f9187d0fc2" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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-correlation-request-id": [ "df7aec56-22d2-4f6b-805f-61da9cff871f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124342Z:df7aec56-22d2-4f6b-805f-61da9cff871f" ], + "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, 30 Jul 2020 12:43:41 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:24:15 GMT" ] }, "ContentHeaders": { "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14+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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", + "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": [ "536", "537", "538", "539" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], + "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": [ "c62ab4c1-57b6-4d0e-9c69-434258df0624" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "f992d08f-96aa-4e4a-95aa-d8e680fe95e4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124412Z:f992d08f-96aa-4e4a-95aa-d8e680fe95e4" ], + "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, 30 Jul 2020 12:44:11 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:24:46 GMT" ] }, "ContentHeaders": { "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14+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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", + "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": [ "536", "537", "538", "539", "540" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], + "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": [ "c4270356-ae19-4771-a7df-1770498be6b0" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "41aa1953-b45f-4050-9a8c-f59cdabfd032" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124442Z:41aa1953-b45f-4050-9a8c-f59cdabfd032" ], + "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, 30 Jul 2020 12:44:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:25:17 GMT" ] }, "ContentHeaders": { "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14+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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", + "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": [ "536", "537", "538", "539", "540", "541" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "295" ], - "x-ms-request-id": [ "67fc6b7c-d6d9-46b2-9f1e-d0afb3950401" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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-correlation-request-id": [ "d1491098-5e56-4bd6-8933-0f9775b6927c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124513Z:d1491098-5e56-4bd6-8933-0f9775b6927c" ], + "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, 30 Jul 2020 12:45:12 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:25:47 GMT" ] }, "ContentHeaders": { "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14+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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", + "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": [ "536", "537", "538", "539", "540", "541", "542" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], + "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": [ "3a927252-fc32-4a84-94a4-3475aad12ac1" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "ec391a71-a2e3-4a57-9138-fc18b23087c4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124543Z:ec391a71-a2e3-4a57-9138-fc18b23087c4" ], + "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, 30 Jul 2020 12:45:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:26:18 GMT" ] }, "ContentHeaders": { "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14+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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", + "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": [ "536", "537", "538", "539", "540", "541", "542", "543" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], + "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": [ "21207f85-ea7e-45fd-a6de-5642bfda696c" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "286f6ed1-51bc-4090-b2f3-d6dc32ae136b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124613Z:286f6ed1-51bc-4090-b2f3-d6dc32ae136b" ], + "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, 30 Jul 2020 12:46:12 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:26:48 GMT" ] }, "ContentHeaders": { "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14+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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", + "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": [ "536", "537", "538", "539", "540", "541", "542", "543", "544" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], + "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": [ "1cc9ddc2-8f76-4a83-b021-f891c39a653d" ], - "x-ms-request-id": [ "2ea940b4-a444-4179-8a11-44696c16bfb8" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "292" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "NORTHEUROPE:20200730T124643Z:1cc9ddc2-8f76-4a83-b021-f891c39a653d" ], + "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, 30 Jul 2020 12:46:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:27:20 GMT" ] }, "ContentHeaders": { "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14+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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", + "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": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], + "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": [ "b3e2a665-bd20-4612-9535-974bbcb06828" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "ccd38068-3e49-47a8-97b0-195210034514" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124714Z:ccd38068-3e49-47a8-97b0-195210034514" ], + "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, 30 Jul 2020 12:47:14 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:27:53 GMT" ] }, "ContentHeaders": { "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14+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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", + "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": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], + "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": [ "baadc914-09c6-4090-b92a-a6f833d204af" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "c302d5a9-0a75-4006-820a-2fa24d9d8fff" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124744Z:c302d5a9-0a75-4006-820a-2fa24d9d8fff" ], + "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, 30 Jul 2020 12:47:44 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:28:23 GMT" ] }, "ContentHeaders": { "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14+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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", + "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": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "c4d2f72d-0e7b-430c-b7ee-da8720cac170" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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-correlation-request-id": [ "78dc1a3c-0e84-40c1-975c-7205ffd39c68" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124815Z:78dc1a3c-0e84-40c1-975c-7205ffd39c68" ], + "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, 30 Jul 2020 12:48:14 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:28:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "492" ], + "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14+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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", + "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": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], + "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,384 +513,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "c2870fb2-edbc-4168-bce1-2843037cd0c0" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "03fc771c-78da-4c06-964a-2a5622329485" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124845Z:03fc771c-78da-4c06-964a-2a5622329485" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 12:48:44 GMT" ] - }, - "ContentHeaders": { - "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], - "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": [ "7b48e79f-50e6-43e7-aa84-3a9d7023ab62" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "6b6e9b5a-0057-4d06-9533-c90111662b37" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124915Z:6b6e9b5a-0057-4d06-9533-c90111662b37" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 12:49:14 GMT" ] - }, - "ContentHeaders": { - "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], - "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" ], - "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": [ "84fad246-e0d2-4da4-9629-8d733d1d050f" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "42ca7b5f-98f2-4094-b4ea-8bc4b7a7fd3d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T124945Z:42ca7b5f-98f2-4094-b4ea-8bc4b7a7fd3d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 12:49:45 GMT" ] - }, - "ContentHeaders": { - "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550", "551" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], - "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": [ "289" ], - "x-ms-request-id": [ "2b352143-ee76-4955-acde-156a77cf98ce" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "16c0203e-2030-4e9b-b71d-20d698cd48b2" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125016Z:16c0203e-2030-4e9b-b71d-20d698cd48b2" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 12:50:15 GMT" ] - }, - "ContentHeaders": { - "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550", "551", "552" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], - "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-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "53b62b3e-d96c-48b2-b9b5-b8beb746f4e9" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a1e6d1a4-ccdb-4972-b1ff-343d929af3c7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125046Z:a1e6d1a4-ccdb-4972-b1ff-343d929af3c7" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 12:50:45 GMT" ] - }, - "ContentHeaders": { - "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550", "551", "552", "553" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], - "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-correlation-request-id": [ "b39f3342-26dc-4eca-9e5f-5c77c48f46c1" ], - "x-ms-request-id": [ "2711d7ac-88b4-4f76-8874-fddb5260e891" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125116Z:b39f3342-26dc-4eca-9e5f-5c77c48f46c1" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 12:51:15 GMT" ] - }, - "ContentHeaders": { - "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550", "551", "552", "553", "554" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], - "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": [ "286" ], - "x-ms-request-id": [ "a474e155-96cf-4723-b5dc-dd14f6275891" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "f81b903c-99fe-4914-bc1d-5eab87a3baa4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125147Z:f81b903c-99fe-4914-bc1d-5eab87a3baa4" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 12:51:46 GMT" ] - }, - "ContentHeaders": { - "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550", "551", "552", "553", "554", "555" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], - "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" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "e71ca018-55e1-49ae-8f81-1e8e140fd970" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "2da1ea0a-2822-45e3-939d-363486a76cf7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125217Z:2da1ea0a-2822-45e3-939d-363486a76cf7" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 12:52:16 GMT" ] - }, - "ContentHeaders": { - "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:42:42.705125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550", "551", "552", "553", "554", "555", "556" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], - "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" ], - "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": [ "6fe2961e-d874-4682-92c0-f0146fc45fdb" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c8eb8807-25b5-413f-b549-85cf240dcc73" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125247Z:c8eb8807-25b5-413f-b549-85cf240dcc73" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 12:52:46 GMT" ] - }, - "ContentHeaders": { - "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/9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"name\":\"9bc773cd-a454-4178-a2f2-8834bf15dd7f\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T12:42:41.7362415Z\",\"endTime\":\"2020-07-30T12:52:34.9544042Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"7702dc86-db1d-4eca-b1f7-cfc0c8feba3c\",\"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/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14\u0026operationResultResponseType=Location+22": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/9bc773cd-a454-4178-a2f2-8834bf15dd7f?api-version=2020-06-14\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550", "551", "552", "553", "554", "555", "556", "557" ], - "x-ms-client-request-id": [ "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc", "fdc6edc7-4f8a-4554-8bcc-8913c4f25fbc" ], - "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" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "01af2728-6f8f-479e-b9bb-f9372986636c" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-correlation-request-id": [ "8b1d3eaa-5a71-46de-a886-7ee3615dd483" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125247Z:8b1d3eaa-5a71-46de-a886-7ee3615dd483" ], + "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, 30 Jul 2020 12:52:47 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:28:57 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -899,14 +530,14 @@ "Content": null } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/start?api-version=2020-06-14+23": { + "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": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/start?api-version=2020-06-14", + "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": [ "558" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "x-ms-unique-id": [ "532" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], "CommandName": [ "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -921,17 +552,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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "87aba3d2-1e3d-44b5-9251-fb9ff273fb77" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "5fa4184d-d6ad-4027-9e17-133976a40f92" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125248Z:5fa4184d-d6ad-4027-9e17-133976a40f92" ], + "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, 30 Jul 2020 12:52:47 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:28:58 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -940,14 +571,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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+24": { + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -963,32 +594,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "0d7e5dda-411e-4b85-900b-fa5d37377d08" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "c3005e62-b966-4e2a-a825-a4a8af07ae82" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125318Z:c3005e62-b966-4e2a-a825-a4a8af07ae82" ], + "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, 30 Jul 2020 12:53:18 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:29:28 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+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+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559", "560" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1004,32 +635,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "966a8898-05aa-41dc-91a3-7c06cef72859" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "c67a6031-4294-46fc-99c5-42a7587aa501" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125348Z:c67a6031-4294-46fc-99c5-42a7587aa501" ], + "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, 30 Jul 2020 12:53:48 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:30:01 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+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+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559", "560", "561" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1045,32 +676,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "31d67b31-100a-460e-8c68-10995bb3e7ff" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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-correlation-request-id": [ "b63c34ed-6494-4cc7-9b06-c6a0605c282d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125419Z:b63c34ed-6494-4cc7-9b06-c6a0605c282d" ], + "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, 30 Jul 2020 12:54:18 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:30:32 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+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+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559", "560", "561", "562" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1086,32 +717,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "1240897a-87a3-4d77-bf16-1e705ffb9a3c" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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": [ "2ee8e8b8-7522-48c5-b5d1-dc2186249162" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125449Z:2ee8e8b8-7522-48c5-b5d1-dc2186249162" ], + "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, 30 Jul 2020 12:54:48 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:31:02 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+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+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559", "560", "561", "562", "563" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1127,32 +758,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "5c9dd85a-d357-4fe7-9a7d-a4914ea1cb9a" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "807117d9-1a7b-49a4-b2f6-90b01381bd5c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125519Z:807117d9-1a7b-49a4-b2f6-90b01381bd5c" ], + "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, 30 Jul 2020 12:55:19 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:31:32 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+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+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559", "560", "561", "562", "563", "564" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1168,32 +799,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "7fe08c11-5f76-4c1c-b9a9-8691d550ea3f" ], - "x-ms-request-id": [ "87fde690-33a7-43f1-8b6e-5236d3fbd3e1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "NORTHEUROPE:20200730T125549Z:7fe08c11-5f76-4c1c-b9a9-8691d550ea3f" ], + "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, 30 Jul 2020 12:55:49 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:32:03 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+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+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559", "560", "561", "562", "563", "564", "565" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1209,32 +840,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "0ed0a78a-ce0a-4e84-8b73-179617b9d725" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "e7514d74-414b-48ed-87b2-57752477e147" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125620Z:e7514d74-414b-48ed-87b2-57752477e147" ], + "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, 30 Jul 2020 12:56:19 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:32:33 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+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+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559", "560", "561", "562", "563", "564", "565", "566" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1250,32 +881,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "f5cf5291-6f7f-4cb0-81c8-a8a229bb930e" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "e3eaac2f-6c41-465f-a142-f6ee8a32b30d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125650Z:e3eaac2f-6c41-465f-a142-f6ee8a32b30d" ], + "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, 30 Jul 2020 12:56:50 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:33:02 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+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+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1291,32 +922,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "24e39e6a-9faa-4fc7-be08-e34680468558" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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-correlation-request-id": [ "a85bc3cd-1025-4e5e-9620-5403c2b63e86" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125721Z:a85bc3cd-1025-4e5e-9620-5403c2b63e86" ], + "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, 30 Jul 2020 12:57:20 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:33:33 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+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+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1332,32 +963,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "e8216ee9-df0f-41e4-b51a-6d3b6b7e2942" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "8a8a9666-5294-4ec9-ba01-3a44211e7f94" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125751Z:8a8a9666-5294-4ec9-ba01-3a44211e7f94" ], + "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, 30 Jul 2020 12:57:50 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:34:03 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+34": { + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568", "569" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1373,32 +1004,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "f2e2452a-d258-4772-9d56-379b026c0ff3" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "ed804f89-bbf7-4559-8974-b7031a43fd2b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125821Z:ed804f89-bbf7-4559-8974-b7031a43fd2b" ], + "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, 30 Jul 2020 12:58:20 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:34:33 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+35": { + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568", "569", "570" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1414,32 +1045,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "2b3d246c-cfb9-4bab-a532-d275bb73f558" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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-correlation-request-id": [ "c88c3dc3-bf4d-4387-b164-63012b6da670" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125851Z:c88c3dc3-bf4d-4387-b164-63012b6da670" ], + "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, 30 Jul 2020 12:58:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:35:04 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+36": { + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568", "569", "570", "571" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1455,32 +1086,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "2c5e0026-4201-496a-b9a2-28e9dea0ca11" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "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": [ "029dc27c-ff4e-4273-a92e-798b970cb1b3" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125922Z:029dc27c-ff4e-4273-a92e-798b970cb1b3" ], + "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, 30 Jul 2020 12:59:21 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:35:34 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+37": { + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568", "569", "570", "571", "572" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1496,32 +1127,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "bdceb722-6370-4254-9706-8ad0a8fb7f60" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "4e8e83cc-67f0-470e-9d46-c633ab76e65f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T125952Z:4e8e83cc-67f0-470e-9d46-c633ab76e65f" ], + "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, 30 Jul 2020 12:59:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:36:04 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+38": { + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568", "569", "570", "571", "572", "573" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1537,32 +1168,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "3333112c-bb17-4688-a136-e2a6570622b0" ], - "x-ms-request-id": [ "0f223a4e-3591-4ed5-80a2-207ae427d7a7" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "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": [ "NORTHEUROPE:20200730T130022Z:3333112c-bb17-4688-a136-e2a6570622b0" ], + "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, 30 Jul 2020 13:00:21 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:36:35 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+39": { + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568", "569", "570", "571", "572", "573", "574" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1578,32 +1209,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "c24b036b-1043-4e7f-a7ed-9c1c244256a2" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "8700085d-1910-4d86-b463-078dfe16b481" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T130053Z:8700085d-1910-4d86-b463-078dfe16b481" ], + "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, 30 Jul 2020 13:00:53 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:37:05 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Running\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T12:52:49.4824817Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14+40": { + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14", + "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": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568", "569", "570", "571", "572", "573", "574", "575" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1619,32 +1250,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "a5c368d6-a828-41d5-b234-1e47d96aee79" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "cca1a71a-d7ac-4a91-a32f-7ec950b0293a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T130123Z:cca1a71a-d7ac-4a91-a32f-7ec950b0293a" ], + "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, 30 Jul 2020 13:01:23 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:37:35 GMT" ] }, "ContentHeaders": { "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"name\":\"e9867c95-3ee3-4ae5-937c-14db2c92b68c\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T12:52:48.1855238Z\",\"endTime\":\"2020-07-30T13:01:20.7798814Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"acdbd201-44d2-4b9a-9dd6-76aea5102928\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14\u0026operationResultResponseType=Location+41": { + "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/e9867c95-3ee3-4ae5-937c-14db2c92b68c?api-version=2020-06-14\u0026operationResultResponseType=Location", + "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": [ "558", "559", "560", "561", "562", "563", "564", "565", "566", "567", "568", "569", "570", "571", "572", "573", "574", "575", "576" ], - "x-ms-client-request-id": [ "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d", "7f5f2e31-dc74-45fb-b1da-214d66ce3b6d" ], + "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" ], @@ -1659,15 +1290,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f09c176a-db00-49a9-b732-e115f28e3efa" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-correlation-request-id": [ "5956f9b6-847a-4b46-bbe9-8934dcfa6a71" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T130123Z:5956f9b6-847a-4b46-bbe9-8934dcfa6a71" ], + "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, 30 Jul 2020 13:01:23 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:37:35 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1676,14 +1307,14 @@ "Content": null } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z?api-version=2020-06-14+1": { + "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/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z?api-version=2020-06-14", + "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": [ "577" ], - "x-ms-client-request-id": [ "564f3c50-5efc-4a2c-93c1-2b7fd6d960b6" ], + "x-ms-unique-id": [ "551" ], + "x-ms-client-request-id": [ "050608c9-5267-4f96-a2a6-b01fc927e09a" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1701,31 +1332,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "8279924f-706d-414c-bcaf-dbf5fc2427cb" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": [ "70badad0-f721-429f-b592-e62b53ff0f2e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T133701Z:70badad0-f721-429f-b592-e62b53ff0f2e" ], + "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, 30 Jul 2020 13:37:00 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:37:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z\",\"name\":\"testcluster0whu7z\",\"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://testcluster0whu7z.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster0whu7z.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"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\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/stop?api-version=2020-06-14+2": { + "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": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/stop?api-version=2020-06-14", + "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": [ "578" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], + "x-ms-unique-id": [ "552" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a" ], "CommandName": [ "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1740,17 +1371,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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "46ac29bb-8f6b-4b87-a96d-b7c42bc87397" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14" ], + "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-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "f9157c93-0be5-4d2a-9231-16f5ecbfedc9" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T133702Z:f9157c93-0be5-4d2a-9231-16f5ecbfedc9" ], + "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, 30 Jul 2020 13:37:01 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:37:36 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1759,14 +1390,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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14+3": { + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", + "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": [ "578", "579" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], + "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" ], @@ -1782,32 +1413,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "d1ac94eb-8e95-49c9-953e-3d3e5d794ed6" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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-correlation-request-id": [ "cad2d39a-4a07-41dd-bd3c-846ac8bd19e4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T133732Z:cad2d39a-4a07-41dd-bd3c-846ac8bd19e4" ], + "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, 30 Jul 2020 13:37:32 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:38:07 GMT" ] }, "ContentHeaders": { "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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14+4": { + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", + "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": [ "578", "579", "580" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], + "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" ], @@ -1823,32 +1454,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "67d0b0ac-007d-44fb-9374-74595939df3b" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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": [ "5018c58f-ddfe-4bda-a679-e7ab74528255" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T133804Z:5018c58f-ddfe-4bda-a679-e7ab74528255" ], + "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, 30 Jul 2020 13:38:04 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:38:37 GMT" ] }, "ContentHeaders": { "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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14+5": { + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", + "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": [ "578", "579", "580", "581" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], + "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" ], @@ -1864,32 +1495,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-request-id": [ "0041aa95-2f2a-491d-9495-6651f2c72526" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "7e505374-da0a-4dc5-a7a4-4c9fcdfa8291" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T133834Z:7e505374-da0a-4dc5-a7a4-4c9fcdfa8291" ], + "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, 30 Jul 2020 13:38:33 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:39:07 GMT" ] }, "ContentHeaders": { "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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14+6": { + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", + "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": [ "578", "579", "580", "581", "582" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], + "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" ], @@ -1905,32 +1536,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], - "x-ms-request-id": [ "e9243c4d-2750-4655-9e25-4ee3d6f3ac2e" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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-correlation-request-id": [ "f0e8a327-4e6d-48a8-8f53-a32cc76f4164" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T133905Z:f0e8a327-4e6d-48a8-8f53-a32cc76f4164" ], + "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, 30 Jul 2020 13:39:04 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:39:37 GMT" ] }, "ContentHeaders": { "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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14+7": { + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", + "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": [ "578", "579", "580", "581", "582", "583" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], + "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" ], @@ -1946,32 +1577,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], - "x-ms-request-id": [ "43677871-fa91-4b21-88f4-612941ebf663" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "259e6254-766b-4e0b-ac77-bcad73017b4b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T133935Z:259e6254-766b-4e0b-ac77-bcad73017b4b" ], + "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, 30 Jul 2020 13:39:34 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:40:08 GMT" ] }, "ContentHeaders": { "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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14+8": { + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", + "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": [ "578", "579", "580", "581", "582", "583", "584" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], + "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" ], @@ -1987,32 +1618,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "294" ], - "x-ms-request-id": [ "29713fb9-93aa-47e9-9ad0-f3884b28b32b" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "04e155d2-66e1-41c3-92df-dcab7340c0e6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134005Z:04e155d2-66e1-41c3-92df-dcab7340c0e6" ], + "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, 30 Jul 2020 13:40:05 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:40:38 GMT" ] }, "ContentHeaders": { "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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14+9": { + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", + "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": [ "578", "579", "580", "581", "582", "583", "584", "585" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], + "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" ], @@ -2028,32 +1659,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "293" ], - "x-ms-request-id": [ "d1150a0d-8846-41f1-96f7-5e3ec2dd8c63" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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-correlation-request-id": [ "5105f7a2-fb61-47dc-97ad-fd147bbf61ee" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134035Z:5105f7a2-fb61-47dc-97ad-fd147bbf61ee" ], + "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, 30 Jul 2020 13:40:35 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:41:08 GMT" ] }, "ContentHeaders": { "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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14+10": { + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", + "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": [ "578", "579", "580", "581", "582", "583", "584", "585", "586" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], + "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" ], @@ -2069,32 +1700,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "292" ], - "x-ms-request-id": [ "ff49bef8-bdcd-4413-b85f-2746ba30c2de" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;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": [ "b9a83d1e-3b35-4d44-bd68-7e0ad99b1909" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134106Z:b9a83d1e-3b35-4d44-bd68-7e0ad99b1909" ], + "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, 30 Jul 2020 13:41:05 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:41:39 GMT" ] }, "ContentHeaders": { "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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14+11": { + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", + "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": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], + "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" ], @@ -2110,32 +1741,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "291" ], - "x-ms-request-id": [ "59a54beb-03e4-47ad-81c1-d10d0d72e753" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "39d19b97-b60f-42f7-842a-edb996f44add" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134136Z:39d19b97-b60f-42f7-842a-edb996f44add" ], + "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, 30 Jul 2020 13:41:36 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:42:08 GMT" ] }, "ContentHeaders": { "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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14+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+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", + "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": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], + "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" ], @@ -2151,32 +1782,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], - "x-ms-request-id": [ "ca165829-b1c2-4732-a4cf-553018695148" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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-correlation-request-id": [ "5f48ff58-24be-4a83-a4ad-b5c714af712b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134206Z:5f48ff58-24be-4a83-a4ad-b5c714af712b" ], + "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, 30 Jul 2020 13:42:06 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:42:40 GMT" ] }, "ContentHeaders": { "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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14+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+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", + "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": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], + "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" ], @@ -2192,32 +1823,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "79e15eb0-7551-4286-886d-bd956f3c5c77" ], - "x-ms-request-id": [ "33ce4639-a11f-4bdc-8e4c-90b6b70dc525" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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-routing-request-id": [ "NORTHEUROPE:20200730T134236Z:79e15eb0-7551-4286-886d-bd956f3c5c77" ], + "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, 30 Jul 2020 13:42:36 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:43:09 GMT" ] }, "ContentHeaders": { "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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14+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+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", + "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": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], + "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" ], @@ -2233,32 +1864,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "17365ed1-45a8-4d62-9e8a-96f23432bfd3" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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": [ "5905ba27-002a-4ee8-b139-792f943702e0" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134307Z:5905ba27-002a-4ee8-b139-792f943702e0" ], + "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, 30 Jul 2020 13:43:07 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:43:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "493" ], + "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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14+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\u0026operationResultResponseType=Location+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", + "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": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590", "591" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], + "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" ], @@ -2273,179 +1904,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "70c898a3-8db5-453e-9a2c-1b7634056ab5" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "3991c443-e79e-495d-acdf-734e5ed91b8d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134337Z:3991c443-e79e-495d-acdf-734e5ed91b8d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 13:43:37 GMT" ] - }, - "ContentHeaders": { - "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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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/360c1985-619a-4059-9ec7-835b2e07b793?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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590", "591", "592" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], - "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" ], - "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": [ "1ab142c2-e869-4413-a618-548261bafdd0" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "cdd8dd23-e0eb-4c5d-8910-68fea0d6eef1" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134408Z:cdd8dd23-e0eb-4c5d-8910-68fea0d6eef1" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 13:44:07 GMT" ] - }, - "ContentHeaders": { - "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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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/360c1985-619a-4059-9ec7-835b2e07b793?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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590", "591", "592", "593" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], - "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" ], - "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": [ "80f3517d-d879-4df2-bfed-1644e1a8ef2e" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a1c8adf0-66b9-41f9-9412-9fb8e1453902" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134438Z:a1c8adf0-66b9-41f9-9412-9fb8e1453902" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 13:44:38 GMT" ] - }, - "ContentHeaders": { - "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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:37:03.0871999Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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/360c1985-619a-4059-9ec7-835b2e07b793?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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590", "591", "592", "593", "594" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], - "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" ], - "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": [ "b589d4ec-1d04-4ade-b12b-f4e0314b19cd" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "0441f300-d4f9-4003-915d-2a24708b3757" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134508Z:0441f300-d4f9-4003-915d-2a24708b3757" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 13:45:08 GMT" ] - }, - "ContentHeaders": { - "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/360c1985-619a-4059-9ec7-835b2e07b793\",\"name\":\"360c1985-619a-4059-9ec7-835b2e07b793\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T13:37:02.1652556Z\",\"endTime\":\"2020-07-30T13:44:52.868142Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"8fc3577d-3ea3-4fff-a375-6ae20aa692b0\",\"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/360c1985-619a-4059-9ec7-835b2e07b793?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/360c1985-619a-4059-9ec7-835b2e07b793?api-version=2020-06-14\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590", "591", "592", "593", "594", "595" ], - "x-ms-client-request-id": [ "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77", "2ec7fbb1-1d14-425e-9df4-88e93c728d77" ], - "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" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fdee235a-420a-41f4-81ce-d7dd76362f56" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "288" ], - "x-ms-correlation-request-id": [ "d99675b4-87ea-443b-b73a-70d58d0fb79d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134508Z:d99675b4-87ea-443b-b73a-70d58d0fb79d" ], + "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, 30 Jul 2020 13:45:08 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:43:40 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2454,14 +1921,14 @@ "Content": null } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/start?api-version=2020-06-14+20": { + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster0whu7z/start?api-version=2020-06-14", + "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": [ "596" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "x-ms-unique-id": [ "566" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2476,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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "761d8c82-b831-47f4-a95b-5bfe661c18f2" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "1198" ], - "x-ms-correlation-request-id": [ "20a894fd-a8c8-4c0b-849c-29996b0c1a8e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134509Z:20a894fd-a8c8-4c0b-849c-29996b0c1a8e" ], + "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, 30 Jul 2020 13:45:08 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:43:40 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2495,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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+21": { + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -2518,32 +1985,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "e59ee0f4-4b28-4d47-a45e-1e94bca1cdbb" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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-correlation-request-id": [ "cb3b3727-0dc0-4f27-83a4-876edd00597a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134539Z:cb3b3727-0dc0-4f27-83a4-876edd00597a" ], + "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, 30 Jul 2020 13:45:38 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:44:11 GMT" ] }, "ContentHeaders": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+22": { + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -2559,32 +2026,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "1a266dea-c09d-4152-befc-6bb87b384ea1" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "45b1fdce-197b-49dc-8e1e-e828e622b3eb" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134609Z:45b1fdce-197b-49dc-8e1e-e828e622b3eb" ], + "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, 30 Jul 2020 13:46:09 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:44:41 GMT" ] }, "ContentHeaders": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+23": { + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598", "599" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -2600,32 +2067,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "c183e9dc-49d7-4eeb-98b4-4d5c7c022cd4" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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": [ "a2d137ad-b2e4-42ea-b7bc-a2611a37a64d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134640Z:a2d137ad-b2e4-42ea-b7bc-a2611a37a64d" ], + "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, 30 Jul 2020 13:46:39 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:45:11 GMT" ] }, "ContentHeaders": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+24": { + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598", "599", "600" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -2641,32 +2108,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "8987d554-eb61-4b9b-8d26-be81f687d3f3" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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-correlation-request-id": [ "2b7ea795-bf93-46b0-b6c7-8811f409a36c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134710Z:2b7ea795-bf93-46b0-b6c7-8811f409a36c" ], + "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, 30 Jul 2020 13:47:09 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:45:41 GMT" ] }, "ContentHeaders": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+25": { + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598", "599", "600", "601" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -2682,32 +2149,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "e2ec2386-86ec-44e6-9ae2-d3190b486475" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "9e240ef0-8d26-474a-bd7f-70682adf4ad7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134740Z:9e240ef0-8d26-474a-bd7f-70682adf4ad7" ], + "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, 30 Jul 2020 13:47:40 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:46:12 GMT" ] }, "ContentHeaders": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+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+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598", "599", "600", "601", "602" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -2723,32 +2190,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "9db49a09-7ab1-4a5f-828d-06842156229b" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "5ce0aafc-2b10-4051-8245-9af52273c502" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134810Z:5ce0aafc-2b10-4051-8245-9af52273c502" ], + "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, 30 Jul 2020 13:48:10 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:46:42 GMT" ] }, "ContentHeaders": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+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+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598", "599", "600", "601", "602", "603" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -2764,32 +2231,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "25543486-9d52-4511-9e94-a47a0f6e937f" ], - "x-ms-request-id": [ "ec5f104e-3419-4c80-9fd6-a4a49679da1e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "NORTHEUROPE:20200730T134841Z:25543486-9d52-4511-9e94-a47a0f6e937f" ], + "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, 30 Jul 2020 13:48:41 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:47:12 GMT" ] }, "ContentHeaders": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+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+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -2805,32 +2272,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "4b42bd40-7eeb-4dca-b40b-a1df9f70a6b8" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "5892a276-b68e-43e3-987b-4f55f6b1aa26" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134911Z:5892a276-b68e-43e3-987b-4f55f6b1aa26" ], + "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, 30 Jul 2020 13:49:11 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:47:43 GMT" ] }, "ContentHeaders": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+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+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -2846,32 +2313,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "0ae2b5bd-2f34-4ed3-bd47-77332b0b4d55" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "eb51b33b-e39d-42de-8692-e3c4b431f1f9" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T134942Z:eb51b33b-e39d-42de-8692-e3c4b431f1f9" ], + "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, 30 Jul 2020 13:49:41 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:48:12 GMT" ] }, "ContentHeaders": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+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+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -2887,32 +2354,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "617410be-426c-4991-af5a-1c5524411319" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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-correlation-request-id": [ "37197259-4f0f-4cda-81ee-c49a07448ed0" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135012Z:37197259-4f0f-4cda-81ee-c49a07448ed0" ], + "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, 30 Jul 2020 13:50:12 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:48:44 GMT" ] }, "ContentHeaders": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+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+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -2928,32 +2395,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "9e4ddb8c-5b1d-4ee5-8497-f7b7bc0e1306" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;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": [ "b48c8c6a-98d0-4f43-8b07-74bb074c592c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135042Z:b48c8c6a-98d0-4f43-8b07-74bb074c592c" ], + "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, 30 Jul 2020 13:50:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:49:13 GMT" ] }, "ContentHeaders": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+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+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -2969,32 +2436,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "6b425bdb-28c9-45d7-9680-f77bc2861f02" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;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": [ "3064692b-c4fa-4bf9-abb2-63c8a1d2b4f0" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135112Z:3064692b-c4fa-4bf9-abb2-63c8a1d2b4f0" ], + "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, 30 Jul 2020 13:51:11 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:49:44 GMT" ] }, "ContentHeaders": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+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+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -3010,32 +2477,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "92ed4884-d96c-4668-8fed-598a3e838836" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;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-correlation-request-id": [ "3aa3abdf-ad76-45c9-aa6b-e94bed9e7db8" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135143Z:3aa3abdf-ad76-45c9-aa6b-e94bed9e7db8" ], + "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, 30 Jul 2020 13:51:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:50:14 GMT" ] }, "ContentHeaders": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+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+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -3051,32 +2518,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "a287199e-1cf8-471b-85c8-f359b547fe44" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;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": [ "d04a06ac-1ee7-43ee-85c6-afce47d6b104" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135213Z:d04a06ac-1ee7-43ee-85c6-afce47d6b104" ], + "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, 30 Jul 2020 13:52:12 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:50:45 GMT" ] }, "ContentHeaders": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+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+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -3092,32 +2559,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "48997229-5698-4791-bef3-f1ed20a60725" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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": [ "42db4d50-bf91-4ad8-a488-7fa520611ee6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135243Z:42db4d50-bf91-4ad8-a488-7fa520611ee6" ], + "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, 30 Jul 2020 13:52:43 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:51:14 GMT" ] }, "ContentHeaders": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+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+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611", "612" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -3133,32 +2600,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "8a4c93ee-a14d-47e5-96d4-e7f6eee8d15f" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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-correlation-request-id": [ "5bcab041-1cc6-453f-887c-5c393ba42bdf" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135313Z:5bcab041-1cc6-453f-887c-5c393ba42bdf" ], + "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, 30 Jul 2020 13:53:13 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:51:45 GMT" ] }, "ContentHeaders": { "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+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+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611", "612", "613" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -3174,32 +2641,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "b978f85b-1b0e-4b3b-be1a-0553c525440b" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "b4415a64-cecc-42ce-a156-cec68233ce2c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135344Z:b4415a64-cecc-42ce-a156-cec68233ce2c" ], + "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, 30 Jul 2020 13:53:43 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "492" ], + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:45:10.4787821Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14+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\u0026operationResultResponseType=Location+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14", + "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": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611", "612", "613", "614" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], + "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" ], @@ -3214,56 +2681,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "d8e76f68-9bcf-4ff3-b527-e65a130419f8" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b8207959-c341-4584-ab2f-3f77969973ec" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135414Z:b8207959-c341-4584-ab2f-3f77969973ec" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 13:54:14 GMT" ] - }, - "ContentHeaders": { - "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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"name\":\"dbf203d3-aea5-4e43-a626-f8c4e0ebe457\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T13:45:09.2286807Z\",\"endTime\":\"2020-07-30T13:53:44.3532503Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"35f63af1-e21a-420e-8607-d8350366c8c9\",\"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/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14\u0026operationResultResponseType=Location+39": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/dbf203d3-aea5-4e43-a626-f8c4e0ebe457?api-version=2020-06-14\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "596", "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611", "612", "613", "614", "615" ], - "x-ms-client-request-id": [ "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3", "1b9437ff-5192-45f5-8324-ab9b99878af3" ], - "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" ], - "x-ms-request-id": [ "4dc9bba6-a2ce-4e2e-ba2e-b75b090a43d1" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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": [ "279" ], - "x-ms-correlation-request-id": [ "034f33b4-12d2-4eb0-b073-e5c2f3884132" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135414Z:034f33b4-12d2-4eb0-b073-e5c2f3884132" ], + "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, 30 Jul 2020 13:54:14 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 9582dfad8dc2..a3cf68075962 100644 --- a/src/Kusto/test/Test-AzKustoClusterNameAvailability.Recording.json +++ b/src/Kusto/test/Test-AzKustoClusterNameAvailability.Recording.json @@ -3,7 +3,7 @@ "Request": { "Method": "POST", "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\": \"testcluster5arkid\",\r\n \"type\": \"Microsoft.Kusto/Clusters\"\r\n}", + "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": [ "594e1674-ccd1-489a-8f6d-d21d6cccc1d1" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "dfce8436-b211-4594-9ade-7d865c33827b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135416Z:dfce8436-b211-4594-9ade-7d865c33827b" ], + "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, 30 Jul 2020 13:54:15 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\":\"testcluster5arkid\",\"nameAvailable\":false,\"message\":\"Name \u0027testcluster5arkid\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 9066f10969b0..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14", + "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": [ "0fe8c8ac-b274-44a2-a501-289e1df7b065" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "c3950727-aa07-4122-a5c8-311aaf8cb3f6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135417Z:c3950727-aa07-4122-a5c8-311aaf8cb3f6" ], + "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, 30 Jul 2020 13:54:17 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 testcluster5arkid. 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14", + "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": [ "618" ], - "x-ms-client-request-id": [ "d2483e8f-b097-45d2-aa8f-353f9273a42d" ], + "x-ms-unique-id": [ "587" ], + "x-ms-client-request-id": [ "e494a9b2-9d0a-454f-bd41-dfde05c0f15e" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -59,28 +59,28 @@ "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "0726290c-4663-469f-a704-6169360af07c" ], - "x-ms-request-id": [ "ae49f0d6-ed07-43d8-b722-43c16987262a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-routing-request-id": [ "NORTHEUROPE:20200730T135418Z:0726290c-4663-469f-a704-6169360af07c" ], + "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, 30 Jul 2020 13:54:17 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14", + "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": [ "976a2424-e99e-4a01-8a30-cd4535e58e92" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "e8790dc8-a562-451e-858f-00fa9e52bd23" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135418Z:e8790dc8-a562-451e-858f-00fa9e52bd23" ], + "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, 30 Jul 2020 13:54:18 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 18d082b99f7b..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/checkNameAvailability?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/checkNameAvailability?api-version=2020-06-14", - "Content": "{\r\n \"name\": \"testdataconnection5arkid\",\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": [ "b2bb7868-87b6-469e-8e48-74638e9ffd1b" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "0d4fce4b-0776-4f80-99fb-f10a190f3ccc" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135525Z:0d4fce4b-0776-4f80-99fb-f10a190f3ccc" ], + "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, 30 Jul 2020 13:55:25 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:53:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "69" ], + "Content-Length": [ "259" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"testdataconnection5arkid\",\"nameAvailable\":true,\"message\":\"\"}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "633" ], - "x-ms-client-request-id": [ "271d5925-33a8-4c20-8774-386ab29da7a6" ], + "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": [ "fb9d81fd-3215-484a-b231-b601c2c02d7c" ], + "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": [ "ca7001fa-9768-48cf-b858-9906e91ab6b4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135526Z:ca7001fa-9768-48cf-b858-9906e91ab6b4" ], + "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, 30 Jul 2020 13:55:26 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/checkNameAvailability?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/checkNameAvailability?api-version=2020-06-14", - "Content": "{\r\n \"name\": \"testdataconnection5arkidani9hf\",\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": [ "223b0faa-6863-42c3-9a1a-c4457d84718e" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "c5b43564-369e-4bc0-91ff-31fc47e20b77" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135526Z:c5b43564-369e-4bc0-91ff-31fc47e20b77" ], + "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, 30 Jul 2020 13:55:26 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\":\"testdataconnection5arkidani9hf\",\"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 6ec48d34e8b7..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/checkNameAvailability?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/checkNameAvailability?api-version=2020-06-14", - "Content": "{\r\n \"name\": \"testdatabase5arkid\",\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": [ "298b356c-d2d1-44e4-9363-bdcaf3f87206" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "b76b8c2c-ed01-447e-a8b7-16b0f25d1221" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135419Z:b76b8c2c-ed01-447e-a8b7-16b0f25d1221" ], + "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, 30 Jul 2020 13:54:19 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\":\"testdatabase5arkid\",\"nameAvailable\":false,\"message\":\"Database testdatabase5arkid already exists in cluster testcluster5arkid. 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14", + "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": [ "621" ], - "x-ms-client-request-id": [ "ab537f8a-1690-41b4-911a-8223b1342714" ], + "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": [ "7719da9d-ae0d-4011-b8d0-0119bdc0e037" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "a9b34ed7-2bbc-487d-bce1-ae31d47b739a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135419Z:a9b34ed7-2bbc-487d-bce1-ae31d47b739a" ], + "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, 30 Jul 2020 13:54:19 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/checkNameAvailability?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/checkNameAvailability?api-version=2020-06-14", - "Content": "{\r\n \"name\": \"testdatabase5arkidqynp9a\",\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": [ "7baded81-dd2e-49b6-b4e3-b710300bcc59" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "c801a0e3-7619-4aab-96eb-a0e513d5c0b6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135420Z:c801a0e3-7619-4aab-96eb-a0e513d5c0b6" ], + "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, 30 Jul 2020 13:54:20 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\":\"testdatabase5arkidqynp9a\",\"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 1f5a8540bb94..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "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": [ "cfbdb337-3a4b-4bde-aec2-67f3ee3e2f8a" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87b5ee05-dac1-4c95-8718-cad08f93448b?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "0a0bbac8-3297-4e27-8cc9-12db4146f381" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135421Z:0a0bbac8-3297-4e27-8cc9-12db4146f381" ], + "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, 30 Jul 2020 13:54:21 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/testdatabase5arkid/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/87b5ee05-dac1-4c95-8718-cad08f93448b?api-version=2020-06-14+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/87b5ee05-dac1-4c95-8718-cad08f93448b?api-version=2020-06-14", + "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": [ "623", "624" ], - "x-ms-client-request-id": [ "4d23c7bd-6524-43cf-9858-d8d9a61c47ef", "4d23c7bd-6524-43cf-9858-d8d9a61c47ef" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "278" ], - "x-ms-request-id": [ "d3590e6a-309a-43a3-a7df-0811ab5b2dd1" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "d33e242e-69f5-4851-9399-521059adaad1" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135452Z:d33e242e-69f5-4851-9399-521059adaad1" ], + "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, 30 Jul 2020 13:54:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:50 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/87b5ee05-dac1-4c95-8718-cad08f93448b\",\"name\":\"87b5ee05-dac1-4c95-8718-cad08f93448b\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T13:54:21.5222581Z\",\"endTime\":\"2020-07-30T13:54:21.6941494Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseAddPrincipals\",\"RootActivityId\":\"42dcdbe3-f6a3-445f-ab67-111e854eb932\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "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": [ "623", "624", "625" ], - "x-ms-client-request-id": [ "4d23c7bd-6524-43cf-9858-d8d9a61c47ef", "4d23c7bd-6524-43cf-9858-d8d9a61c47ef", "4d23c7bd-6524-43cf-9858-d8d9a61c47ef" ], + "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": [ "0c764759-faf1-4a9d-ada7-6486a5fe1fba" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "7ef2dd1c-ec11-4bb3-aa26-3cd755995bc7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135452Z:7ef2dd1c-ec11-4bb3-aa26-3cd755995bc7" ], + "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, 30 Jul 2020 13:54:51 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1\",\"name\":\"testcluster5arkid/testdatabase5arkid/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14", + "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": [ "272b8579-1c9b-4b46-a7e2-247b20904308" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "452e32da-621f-45bb-94e1-c891df1ae314" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135452Z:452e32da-621f-45bb-94e1-c891df1ae314" ], + "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, 30 Jul 2020 13:54:52 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 testdatabase5arkid. 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/PrincipalAssignments/principalassignment1?api-version=2020-06-14", + "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": [ "627" ], - "x-ms-client-request-id": [ "4cfb7a09-aa29-4220-a88a-d588756583fd" ], + "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/f0a0b6cc-5074-4f10-a45d-e669d1faf551?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/f0a0b6cc-5074-4f10-a45d-e669d1faf551?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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/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": [ "5240ad16-b312-497e-b2e8-8e9cb95d94cb" ], - "x-ms-correlation-request-id": [ "5240ad16-b312-497e-b2e8-8e9cb95d94cb" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135453Z:5240ad16-b312-497e-b2e8-8e9cb95d94cb" ], + "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, 30 Jul 2020 13:54:52 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/f0a0b6cc-5074-4f10-a45d-e669d1faf551?api-version=2020-06-14+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/f0a0b6cc-5074-4f10-a45d-e669d1faf551?api-version=2020-06-14", + "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": [ "627", "628" ], - "x-ms-client-request-id": [ "4cfb7a09-aa29-4220-a88a-d588756583fd", "4cfb7a09-aa29-4220-a88a-d588756583fd" ], + "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": [ "288" ], - "x-ms-request-id": [ "5c341298-35de-4669-8600-541174abd447" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "37b674f4-f8bb-42a4-a7d0-4dc3b46c8e65" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135523Z:37b674f4-f8bb-42a4-a7d0-4dc3b46c8e65" ], + "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, 30 Jul 2020 13:55:23 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:53:22 GMT" ] }, "ContentHeaders": { "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/f0a0b6cc-5074-4f10-a45d-e669d1faf551\",\"name\":\"f0a0b6cc-5074-4f10-a45d-e669d1faf551\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T13:54:53.4013305Z\",\"endTime\":\"2020-07-30T13:54:53.5263414Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDropPrincipals\",\"RootActivityId\":\"c8ce6fca-4901-4974-9b92-bfd1f5ebc763\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/f0a0b6cc-5074-4f10-a45d-e669d1faf551?api-version=2020-06-14\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/f0a0b6cc-5074-4f10-a45d-e669d1faf551?api-version=2020-06-14\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": [ "627", "628", "629" ], - "x-ms-client-request-id": [ "4cfb7a09-aa29-4220-a88a-d588756583fd", "4cfb7a09-aa29-4220-a88a-d588756583fd", "4cfb7a09-aa29-4220-a88a-d588756583fd" ], + "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": [ "69ea9d17-726d-4f86-b9e2-41d9b7222296" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "287" ], - "x-ms-correlation-request-id": [ "ac698592-8e48-44ad-b8c5-e1f146221418" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135523Z:ac698592-8e48-44ad-b8c5-e1f146221418" ], + "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, 30 Jul 2020 13:55:23 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "630" ], - "x-ms-client-request-id": [ "22bbad95-5310-44f7-836e-2adaee87b43a" ], + "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": [ "47449c1e-a6f3-4c89-939a-7fd2897f5871" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "256a34a0-77be-4520-a7a2-b92edaab2802" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135524Z:256a34a0-77be-4520-a7a2-b92edaab2802" ], + "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, 30 Jul 2020 13:55:24 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14", + "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": [ "f53a5a80-3cea-464f-899a-80380049d9ac" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "dc24b44c-13b1-46f7-b2d4-933e2bd6215b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135524Z:dc24b44c-13b1-46f7-b2d4-933e2bd6215b" ], + "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, 30 Jul 2020 13:55:24 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 e85c54f40716..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14", + "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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "445568d0-8a40-4d7b-bf07-f3968976e836" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;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/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": [ "a4c983f7-d30b-4022-b0d5-4a19111aba6d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135528Z:a4c983f7-d30b-4022-b0d5-4a19111aba6d" ], + "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, 30 Jul 2020 13:55:28 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:53:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "793" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14+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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14", + "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": [ "635", "636" ], - "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "c5c88e1e-b7f1-4653-82ba-9367d0a012a5" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "2acbbf6f-6f25-4312-b828-767c179e8dc5" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135558Z:2acbbf6f-6f25-4312-b828-767c179e8dc5" ], + "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, 30 Jul 2020 13:55:58 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:53:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14+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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14", + "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": [ "635", "636", "637" ], - "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], + "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": [ "285" ], - "x-ms-request-id": [ "e0924952-ed1c-4a5c-8eb5-24f92580bd14" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "60f8e1d1-3b83-4faa-ba58-3cf62de095fb" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135629Z:60f8e1d1-3b83-4faa-ba58-3cf62de095fb" ], + "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, 30 Jul 2020 13:56:28 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:54:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14+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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14", + "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": [ "635", "636", "637", "638" ], - "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], + "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": [ "284" ], - "x-ms-request-id": [ "d03349e5-8a54-4d07-9aac-b00788481190" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "d5cf36d7-3d63-4a41-97dd-28519232623a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135659Z:d5cf36d7-3d63-4a41-97dd-28519232623a" ], + "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, 30 Jul 2020 13:56:59 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:54:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14+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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14", + "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": [ "635", "636", "637", "638", "639" ], - "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "4ad5a0f7-5ad7-4e61-af97-037f2732f512" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "79143412-6ed6-4ac3-95dc-2b9855122386" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135729Z:79143412-6ed6-4ac3-95dc-2b9855122386" ], + "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, 30 Jul 2020 13:57:28 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:55:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14+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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14", + "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": [ "635", "636", "637", "638", "639", "640" ], - "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], + "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": [ "282" ], - "x-ms-request-id": [ "39402646-7f5e-4044-9298-c70253b6f387" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "9c72c1a9-b8c8-4e77-998d-08c773e41963" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135759Z:9c72c1a9-b8c8-4e77-998d-08c773e41963" ], + "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, 30 Jul 2020 13:57:59 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:55:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14+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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14", + "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": [ "635", "636", "637", "638", "639", "640", "641" ], - "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], + "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": [ "281" ], - "x-ms-request-id": [ "dd7e5dca-730c-4a53-98f2-13d62b587f75" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "1af4954b-3a5d-4fbd-92e9-bf02500b1ffa" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135830Z:1af4954b-3a5d-4fbd-92e9-bf02500b1ffa" ], + "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, 30 Jul 2020 13:58:29 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:56:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14+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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14", + "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": [ "635", "636", "637", "638", "639", "640", "641", "642" ], - "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "ed5ee90e-960f-474f-a1e2-17efe94961a7" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "6fdc0906-41be-49f1-9081-aff6a4400aec" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T135900Z:6fdc0906-41be-49f1-9081-aff6a4400aec" ], + "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, 30 Jul 2020 13:58:59 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:56:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14+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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14", + "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": [ "635", "636", "637", "638", "639", "640", "641", "642", "643" ], - "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], + "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-correlation-request-id": [ "37b511e5-b228-4e3d-9f60-ddab3b31d98b" ], - "x-ms-request-id": [ "c81b4732-6805-492d-bceb-09088483f52f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-routing-request-id": [ "NORTHEUROPE:20200730T135930Z:37b511e5-b228-4e3d-9f60-ddab3b31d98b" ], + "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, 30 Jul 2020 13:59:30 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:57:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14+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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14", + "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": [ "635", "636", "637", "638", "639", "640", "641", "642", "643", "644" ], - "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], + "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": [ "289" ], - "x-ms-request-id": [ "3d12c103-e2bc-4341-8616-4eec77fe5c2b" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "56e04210-730e-46dd-a820-20536e089930" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140001Z:56e04210-730e-46dd-a820-20536e089930" ], + "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, 30 Jul 2020 14:00:00 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:57:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14+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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14", + "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": [ "635", "636", "637", "638", "639", "640", "641", "642", "643", "644", "645" ], - "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "6d5e0a75-1139-494f-b7af-c14d109a4414" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "edfbfab0-1c32-4171-be60-76ae39809eeb" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140031Z:edfbfab0-1c32-4171-be60-76ae39809eeb" ], + "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, 30 Jul 2020 14:00:30 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:58:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14+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/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14", + "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": [ "635", "636", "637", "638", "639", "640", "641", "642", "643", "644", "645", "646" ], - "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], + "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": [ "287" ], - "x-ms-request-id": [ "2355fadd-714e-4d29-9545-54032281bb39" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "7a824796-1772-408f-8b2a-7859e4b66d4a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140101Z:7a824796-1772-408f-8b2a-7859e4b66d4a" ], + "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, 30 Jul 2020 14:01:01 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:58:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "504" ], + "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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Running\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T13:55:31.7800672Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/providers/Microsoft.Kusto/locations/East US/operationResults/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14+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/providers/Microsoft.Kusto/locations/East%20US/operationResults/99268e7b-b01d-4742-bc92-d606e705bc30?api-version=2020-06-14", + "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": [ "635", "636", "637", "638", "639", "640", "641", "642", "643", "644", "645", "646", "647" ], - "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], + "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" ], @@ -505,47 +505,6 @@ "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": [ "8aa4c19e-6e49-4d72-b167-d25f49091b86" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "bf818e84-2e04-4939-93af-079e5d7d139c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140131Z:bf818e84-2e04-4939-93af-079e5d7d139c" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 14:01:31 GMT" ] - }, - "ContentHeaders": { - "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/99268e7b-b01d-4742-bc92-d606e705bc30\",\"name\":\"99268e7b-b01d-4742-bc92-d606e705bc30\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T13:55:28.4985807Z\",\"endTime\":\"2020-07-30T14:01:29.9100074Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"1bdf5030-8fb4-4c28-8235-566048cb62c0\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" - } - }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14+14": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "635", "636", "637", "638", "639", "640", "641", "642", "643", "644", "645", "646", "647", "648" ], - "x-ms-client-request-id": [ "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052", "5ec9e5da-04dc-4fa1-9df8-4495c17f5052" ], - "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", "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", "Update-AzKustoCluster_UpdateExpanded" ], - "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": { @@ -553,32 +512,32 @@ "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "1fbb143d-5edd-4f5e-b0b4-fb7a0f3b5d0b" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], + "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": [ "dbb89ea7-44e5-4abd-b777-49c9e1be747f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140132Z:dbb89ea7-44e5-4abd-b777-49c9e1be747f" ], + "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, 30 Jul 2020 14:01:31 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:58:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14", + "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": [ "649" ], - "x-ms-client-request-id": [ "7de99fcc-7cb9-4d6d-983f-f7274782b05e" ], + "x-ms-unique-id": [ "617" ], + "x-ms-client-request-id": [ "4dcc853a-51bb-44cb-8041-6ac044def180" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -595,28 +554,28 @@ "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "8570da08-efe0-4527-b39c-551c1934368b" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], + "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": [ "3bd0c284-363a-4656-8e94-a6089da901fa" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140132Z:3bd0c284-363a-4656-8e94-a6089da901fa" ], + "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, 30 Jul 2020 14:01:31 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:58:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14", + "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": { }, @@ -631,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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "d6de3fba-e924-43f2-ab85-065c83ec3184" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;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/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": [ "128738e0-3913-4f0e-80e1-0b1356a1ba42" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140133Z:128738e0-3913-4f0e-80e1-0b1356a1ba42" ], + "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, 30 Jul 2020 14:01:33 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:59:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "793" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14+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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14", + "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": [ "650", "651" ], - "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], + "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" ], @@ -674,32 +633,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "45e828d5-07b9-44ab-965d-20a464453ac3" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "cedf55e1-330f-4d53-ba4b-e0b77bb77e01" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140203Z:cedf55e1-330f-4d53-ba4b-e0b77bb77e01" ], + "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, 30 Jul 2020 14:02:03 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:59:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "503" ], + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14+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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14", + "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": [ "650", "651", "652" ], - "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], + "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" ], @@ -715,32 +674,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "0af11372-b0ac-48e2-bf24-b6bf2d6e85e4" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "e7702e67-2b56-4d37-bb29-2e921da3d1fc" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140234Z:e7702e67-2b56-4d37-bb29-2e921da3d1fc" ], + "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, 30 Jul 2020 14:02:33 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:00:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "503" ], + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14+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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14", + "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": [ "650", "651", "652", "653" ], - "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], + "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" ], @@ -756,32 +715,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "cfa32b46-e405-47aa-9596-ac5d23d4f924" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "93fd0370-719a-4321-9d7d-bf26fbab4c01" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140304Z:93fd0370-719a-4321-9d7d-bf26fbab4c01" ], + "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, 30 Jul 2020 14:03:03 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:00:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "503" ], + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14+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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14", + "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": [ "650", "651", "652", "653", "654" ], - "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], + "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" ], @@ -797,32 +756,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "8c9459c5-1894-4464-97f9-004eeb2a2972" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "c2fcf2ae-2679-4fb4-8dc1-3efe41049071" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140334Z:c2fcf2ae-2679-4fb4-8dc1-3efe41049071" ], + "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, 30 Jul 2020 14:03:34 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:01:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "503" ], + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14+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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14", + "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": [ "650", "651", "652", "653", "654", "655" ], - "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], + "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" ], @@ -838,32 +797,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "aa6d6f8e-5486-4907-a238-2584b68b5454" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "bf9fb674-db37-455b-8375-a54345646ff6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140404Z:bf9fb674-db37-455b-8375-a54345646ff6" ], + "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, 30 Jul 2020 14:04:04 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:01:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "503" ], + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14+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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14", + "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": [ "650", "651", "652", "653", "654", "655", "656" ], - "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], + "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" ], @@ -879,32 +838,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "802766b8-2a47-4c08-88d9-1ce987942f30" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "50562e27-bd58-4a75-956c-0c1a1c9b6bb3" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140435Z:50562e27-bd58-4a75-956c-0c1a1c9b6bb3" ], + "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, 30 Jul 2020 14:04:34 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:02:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "503" ], + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14+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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14", + "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": [ "650", "651", "652", "653", "654", "655", "656", "657" ], - "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], + "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" ], @@ -920,32 +879,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "2afbbf70-0fed-4b87-a857-b86ff44f2b06" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "f5eb3d5e-597e-4283-9eb1-9bc8efd8eafb" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140505Z:f5eb3d5e-597e-4283-9eb1-9bc8efd8eafb" ], + "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, 30 Jul 2020 14:05:04 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:02:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "503" ], + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14+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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14", + "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": [ "650", "651", "652", "653", "654", "655", "656", "657", "658" ], - "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], + "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" ], @@ -961,32 +920,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "a168fee0-d5a9-4ba0-89a0-342a26f63dcd" ], - "x-ms-request-id": [ "c3bbbee7-c547-47ed-9ac5-0bd2d29799ca" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "NORTHEUROPE:20200730T140535Z:a168fee0-d5a9-4ba0-89a0-342a26f63dcd" ], + "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, 30 Jul 2020 14:05:35 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:03:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "503" ], + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14+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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14", + "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": [ "650", "651", "652", "653", "654", "655", "656", "657", "658", "659" ], - "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], + "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" ], @@ -1002,32 +961,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "82e578de-9ee9-4240-bda2-7e49b2b54dfe" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "039b9d29-476a-454a-b241-abc77402077f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140606Z:039b9d29-476a-454a-b241-abc77402077f" ], + "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, 30 Jul 2020 14:06:05 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:03:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "503" ], + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14+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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14", + "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": [ "650", "651", "652", "653", "654", "655", "656", "657", "658", "659", "660" ], - "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], + "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" ], @@ -1043,32 +1002,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "a9d263bd-2cb4-47e4-82e3-6d03641b83e7" ], + "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": [ "71158db4-aaa1-44c4-848b-e7e4b3e9de10" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140636Z:71158db4-aaa1-44c4-848b-e7e4b3e9de10" ], + "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, 30 Jul 2020 14:06:35 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:04:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "503" ], + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14+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/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14", + "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": [ "650", "651", "652", "653", "654", "655", "656", "657", "658", "659", "660", "661" ], - "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], + "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" ], @@ -1084,32 +1043,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "c01e9874-51b1-45de-8da6-9e05f684f8f4" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "5bc8243d-c98b-4383-a5d2-55d9f8601033" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140706Z:5bc8243d-c98b-4383-a5d2-55d9f8601033" ], + "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, 30 Jul 2020 14:07:05 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:04:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "503" ], + "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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Running\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:01:36.2542133Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/providers/Microsoft.Kusto/locations/East US/operationResults/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14+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/providers/Microsoft.Kusto/locations/East%20US/operationResults/31414867-c6d7-4584-a7a8-0142d2bb37e0?api-version=2020-06-14", + "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": [ "650", "651", "652", "653", "654", "655", "656", "657", "658", "659", "660", "661", "662" ], - "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], + "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" ], @@ -1119,47 +1078,6 @@ "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": [ "b09fc7af-e7bc-4fa8-98a0-fc9c56ffbc3b" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a09377c7-1b91-4206-9720-d795673e2a2c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140737Z:a09377c7-1b91-4206-9720-d795673e2a2c" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 30 Jul 2020 14:07:36 GMT" ] - }, - "ContentHeaders": { - "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/31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"name\":\"31414867-c6d7-4584-a7a8-0142d2bb37e0\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T14:01:33.535235Z\",\"endTime\":\"2020-07-30T14:07:35.9415425Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"c2fc03e2-4bfa-41c9-b597-55d875eb83be\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" - } - }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14+15": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "650", "651", "652", "653", "654", "655", "656", "657", "658", "659", "660", "661", "662", "663" ], - "x-ms-client-request-id": [ "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2", "23022805-d602-440a-8d12-4e16f94fefb2" ], - "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", "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", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], - "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": { @@ -1168,21 +1086,21 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-request-id": [ "8bfc1a6d-1b32-4abc-8c55-d91e82f4f21d" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "d5d87267-b1b4-4dd2-a2dd-1ab0b899ca5e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140737Z:d5d87267-b1b4-4dd2-a2dd-1ab0b899ca5e" ], + "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, 30 Jul 2020 14:07:37 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:04:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"name\":\"testcluster5arkid\",\"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://testcluster5arkid.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testcluster5arkid.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"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 f61b3441709d..2eec1d5e82f0 100644 --- a/src/Kusto/test/Update-AzKustoDataConnection.Recording.json +++ b/src/Kusto/test/Update-AzKustoDataConnection.Recording.json @@ -1,117 +1,375 @@ { - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?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 \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubns5arkid/eventhubs/eventhub5arkid\",\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": { - "StatusCode": 404, + "StatusCode": 202, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7e409ca1-d018-4769-96fc-5fb19ad349e6" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "ETag": [ "\"\"" ], + "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": [ "89624fd4-2f77-4cb9-a088-c5009b25555d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140947Z:89624fd4-2f77-4cb9-a088-c5009b25555d" ], + "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, 30 Jul 2020 14:09:47 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:06:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "300" ], + "Content-Length": [ "690" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid\u0027 is not found.\"}}" + "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]+UpdateExpandedEventGrid+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?api-version=2020-06-14+1": { + "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/96d77c67-a748-44f0-a097-0fc40820d6e3?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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-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": [ "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": [ "Mon, 03 Aug 2020 02:07:16 GMT" ] + }, + "ContentHeaders": { + "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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" ], + "ETag": [ "\"\"" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "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": [ "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": [ "Mon, 03 Aug 2020 02:07:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "776" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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/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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?api-version=2020-06-14", - "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/testgroup5arkid/providers/Microsoft.EventHub/namespaces/eventhubnsgridkgb956/eventhubs/eventgridkgb956\",\r\n \"mappingRuleName\": \"EventsMapping1\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgroup5arkid/providers/Microsoft.Storage/storageAccounts/storage5arkid\",\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": { - "StatusCode": 404, + "StatusCode": 202, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b336baee-2529-43f6-8625-526b1c71a491" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "ETag": [ "\"\"" ], + "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": [ "18195ab3-e59f-42fe-b1c2-70160a6773a5" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140948Z:18195ab3-e59f-42fe-b1c2-70160a6773a5" ], + "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": [ "Mon, 03 Aug 2020 02:07:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "847" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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/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/0f64297c-f922-4b5f-ab11-e61421cd25b9?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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-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-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": [ "Mon, 03 Aug 2020 02:07:47 GMT" ] + }, + "ContentHeaders": { + "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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" ], + "ETag": [ "\"\"" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "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": [ "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, 30 Jul 2020 14:09:47 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:07:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "301" ], + "Content-Length": [ "960" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg\u0027 is not found.\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?api-version=2020-06-14", - "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/testgroup5arkid/providers/Microsoft.Devices/IotHubs/iothub5arkid\",\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": { - "StatusCode": 404, + "StatusCode": 202, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "24cadeeb-4186-4ff3-94cf-b77cf75ae210" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "ETag": [ "\"\"" ], + "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": [ "d31d3fd2-2a8a-4b0e-a065-8f7a95a76b8d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140949Z:d31d3fd2-2a8a-4b0e-a065-8f7a95a76b8d" ], + "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": [ "Mon, 03 Aug 2020 02:07:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "674" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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/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/46a5a042-b5b5-4740-9b7f-97ac73e48f4c?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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-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": [ "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, 30 Jul 2020 14:09:48 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:08:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "301" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh\u0027 is not found.\"}}" + "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]+UpdateViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14+1": { + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid?api-version=2020-06-14", + "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": [ "685" ], - "x-ms-client-request-id": [ "246c0f9a-24b2-4a4b-8420-f09c8e52ad4e" ], + "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" ], + "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" ], + "ETag": [ "\"\"" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], + "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": [ "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": [ "Mon, 03 Aug 2020 02:08:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "760" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "658" ], + "x-ms-client-request-id": [ "ffc4c05f-0bb2-4620-bb1c-0760f4e6adcd" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -122,36 +380,159 @@ } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a443e65d-f604-47c1-816f-5b9eb61ad1e1" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "ETag": [ "\"\"" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-correlation-request-id": [ "9caad470-86e0-4097-9790-29b53c7778de" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140949Z:9caad470-86e0-4097-9790-29b53c7778de" ], + "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": [ "Mon, 03 Aug 2020 02:08:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "776" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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/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/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": [ "333" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "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/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": [ "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": [ "Mon, 03 Aug 2020 02:08:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "690" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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/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/57b04bb4-d8fc-4fcc-9571-2ae8f307613d?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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-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-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": [ "Mon, 03 Aug 2020 02:08:50 GMT" ] + }, + "ContentHeaders": { + "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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" ], + "ETag": [ "\"\"" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], + "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": [ "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, 30 Jul 2020 14:09:49 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:08:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "300" ], + "Content-Length": [ "776" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkid\u0027 is not found.\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg?api-version=2020-06-14", + "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": [ "686" ], - "x-ms-client-request-id": [ "96990b65-8836-4737-8a94-5d92bed56a98" ], + "x-ms-unique-id": [ "662" ], + "x-ms-client-request-id": [ "35eda697-8844-4c39-bb22-87b8e4e3ad96" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -162,36 +543,159 @@ } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "313d9328-c8a7-4054-b396-06b51b191507" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "ETag": [ "\"\"" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "294" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-correlation-request-id": [ "10c72e43-1790-4273-b499-0b666ff969be" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140950Z:10c72e43-1790-4273-b499-0b666ff969be" ], + "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": [ "Mon, 03 Aug 2020 02:08:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "960" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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/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/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": [ "488" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "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/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": [ "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": [ "Mon, 03 Aug 2020 02:08:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "847" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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/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/f867cb52-368b-437a-a103-28a0fb506c7a?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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-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": [ "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": [ "Mon, 03 Aug 2020 02:09:23 GMT" ] + }, + "ContentHeaders": { + "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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" ], + "ETag": [ "\"\"" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "293" ], + "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": [ "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, 30 Jul 2020 14:09:49 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:09:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "301" ], + "Content-Length": [ "960" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidg\u0027 is not found.\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh?api-version=2020-06-14", + "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": [ "687" ], - "x-ms-client-request-id": [ "1cad9cb4-7ef6-407b-a5d8-ae9356225961" ], + "x-ms-unique-id": [ "666" ], + "x-ms-client-request-id": [ "d65f3a52-8f89-49cb-8991-09bb5fb6c1a9" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -202,26 +706,149 @@ } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "26035b12-514d-4237-b51e-7d7fc287ba25" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "ETag": [ "\"\"" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "292" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-correlation-request-id": [ "c3b5e450-811d-4f14-a821-5816d1941ae0" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140951Z:c3b5e450-811d-4f14-a821-5816d1941ae0" ], + "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": [ "Mon, 03 Aug 2020 02:09:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "760" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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/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/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": [ "315" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "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/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": [ "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": [ "Mon, 03 Aug 2020 02:09:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "674" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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/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/74ac0ab4-10dd-43fd-8c55-9d7419951095?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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-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-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": [ "Mon, 03 Aug 2020 02:09:55 GMT" ] + }, + "ContentHeaders": { + "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/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/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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14", + "Content": null, + "Headers": { + "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" ], + "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" ], + "ETag": [ "\"\"" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "291" ], + "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": [ "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, 30 Jul 2020 14:09:50 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:09:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "301" ], + "Content-Length": [ "760" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The resource with identifier \u0027/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid/DataConnections/testdataconnection5arkidh\u0027 is not found.\"}}" + "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 028461b12d1e..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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "249dd5ff-6e60-4049-997e-bcc2fcd667b9" ], + "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": [ "d101c954-f876-4b6e-a1c4-ddc060f677d8" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "dea71ea3-efa9-491f-87d4-ea31412e6907" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140738Z:dea71ea3-efa9-491f-87d4-ea31412e6907" ], + "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, 30 Jul 2020 14:07:37 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14", + "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/bdac1f18-db34-4f60-ad3e-b8681e34b42b?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "e759fabf-0928-4e58-9c25-b1a9d5a7c26f" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bdac1f18-db34-4f60-ad3e-b8681e34b42b?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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/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": [ "fff40464-e71f-4648-be98-bd854ccf1f48" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140738Z:fff40464-e71f-4648-be98-bd854ccf1f48" ], + "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, 30 Jul 2020 14:07:38 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/bdac1f18-db34-4f60-ad3e-b8681e34b42b?api-version=2020-06-14+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/bdac1f18-db34-4f60-ad3e-b8681e34b42b?api-version=2020-06-14", + "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": [ "665", "666" ], - "x-ms-client-request-id": [ "a77be71a-8671-4ae4-ae2c-4c672c2a5a8d", "a77be71a-8671-4ae4-ae2c-4c672c2a5a8d" ], + "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": [ "ae0aebc4-0b7b-47b4-bf34-af0f49e25d39" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "3ba50cfc-32f1-4122-931b-8d947718f2dd" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140809Z:3ba50cfc-32f1-4122-931b-8d947718f2dd" ], + "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, 30 Jul 2020 14:08:08 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:05:06 GMT" ] }, "ContentHeaders": { "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/bdac1f18-db34-4f60-ad3e-b8681e34b42b\",\"name\":\"bdac1f18-db34-4f60-ad3e-b8681e34b42b\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T14:07:38.7542247Z\",\"endTime\":\"2020-07-30T14:07:43.1921546Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"10dc3e41-bff2-42d7-9097-fd4eff0db4c4\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "665", "666", "667" ], - "x-ms-client-request-id": [ "a77be71a-8671-4ae4-ae2c-4c672c2a5a8d", "a77be71a-8671-4ae4-ae2c-4c672c2a5a8d", "a77be71a-8671-4ae4-ae2c-4c672c2a5a8d" ], + "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": [ "cba67af7-f663-49da-8089-06ca51cd04b2" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "f453a318-05a7-4144-ab64-9efedece2219" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140809Z:f453a318-05a7-4144-ab64-9efedece2219" ], + "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, 30 Jul 2020 14:08:08 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "668" ], - "x-ms-client-request-id": [ "95cffb97-dc0c-4f9f-a494-f2ffb0155575" ], + "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": [ "dddb6ba3-e044-4bbb-b5aa-7f90a2926468" ], - "Set-Cookie": [ "ARRAffinity=0b20ba151314f86a0737223ef48ad813dc527c505a17f75b2d96c6573ffe5df1;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "f08ea8e0-6863-4bef-8574-b818af5c126c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140810Z:f08ea8e0-6863-4bef-8574-b818af5c126c" ], + "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, 30 Jul 2020 14:08:09 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid\",\"name\":\"testfclusterkgb956/testdatabase5arkid\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"attachedDatabaseConfigurationName\":\"testdbconfkgb956\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?api-version=2020-06-14", + "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/907232b2-7dcb-43b7-841d-48ce67b79cc4?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "72df9e8f-c223-4823-b919-1bbe4ef338a1" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/907232b2-7dcb-43b7-841d-48ce67b79cc4?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;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/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": [ "7884b0fd-5a12-41bc-9011-efdb7c9c6774" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140810Z:7884b0fd-5a12-41bc-9011-efdb7c9c6774" ], + "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, 30 Jul 2020 14:08:10 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid\",\"name\":\"testfclusterkgb956/testdatabase5arkid\",\"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/907232b2-7dcb-43b7-841d-48ce67b79cc4?api-version=2020-06-14+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/907232b2-7dcb-43b7-841d-48ce67b79cc4?api-version=2020-06-14", + "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": [ "669", "670" ], - "x-ms-client-request-id": [ "111aecdc-709c-48d9-b337-8d54465fbab3", "111aecdc-709c-48d9-b337-8d54465fbab3" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "e6c0da00-ca41-4e27-af97-5f8c0360d487" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "c6cc84f7-335c-4d55-8904-22afa768f573" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140841Z:c6cc84f7-335c-4d55-8904-22afa768f573" ], + "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, 30 Jul 2020 14:08:40 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:05:38 GMT" ] }, "ContentHeaders": { "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/907232b2-7dcb-43b7-841d-48ce67b79cc4\",\"name\":\"907232b2-7dcb-43b7-841d-48ce67b79cc4\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T14:08:10.8047789Z\",\"endTime\":\"2020-07-30T14:08:12.5392989Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"97c851e8-be45-4b9c-b64c-9475cdd31a6b\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "669", "670", "671" ], - "x-ms-client-request-id": [ "111aecdc-709c-48d9-b337-8d54465fbab3", "111aecdc-709c-48d9-b337-8d54465fbab3", "111aecdc-709c-48d9-b337-8d54465fbab3" ], + "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": [ "fc673b5e-b137-4a04-a506-df35e27e1921" ], - "Set-Cookie": [ "ARRAffinity=91632ea45e362786b046a2bc5dc71afb96d330a18ec878b46ee71f0b6f8bc72b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "f3815997-9ecf-4dd4-af4f-bfa8581a0cdc" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140841Z:f3815997-9ecf-4dd4-af4f-bfa8581a0cdc" ], + "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, 30 Jul 2020 14:08:40 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid\",\"name\":\"testfclusterkgb956/testdatabase5arkid\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"attachedDatabaseConfigurationName\":\"testdbconfkgb956\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "672" ], - "x-ms-client-request-id": [ "5b9f83f1-2346-492e-a886-e22470559976" ], + "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": [ "338bd2ee-c3e7-4b1c-9143-4a027c23c66a" ], - "Set-Cookie": [ "ARRAffinity=083009ef84a8f0d3087e83226e5ffb5361530b5ca5cf9d1da558ed0acbe1b682;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "3d279904-2d09-4741-b011-00367110df31" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140842Z:3d279904-2d09-4741-b011-00367110df31" ], + "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, 30 Jul 2020 14:08:41 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "673" ], - "x-ms-client-request-id": [ "9c6723ea-4862-4b99-8607-2d7d28b4947c" ], + "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": [ "04f93540-80a7-49e6-9803-4dc43f4e097f" ], - "Set-Cookie": [ "ARRAffinity=6efc2269d71deaa1261da4c300d2678080968815c44335ea47a42a26a14b8e83;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "45595e66-ea17-4377-8383-07d3c04fe697" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140842Z:45595e66-ea17-4377-8383-07d3c04fe697" ], + "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, 30 Jul 2020 14:08:41 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14", + "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/e8a98d5d-ab6f-463c-bc0e-5703477026eb?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "8ec765f0-f5cc-47d9-ab30-38bc7b560d71" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8a98d5d-ab6f-463c-bc0e-5703477026eb?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;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/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": [ "fd7842c3-bd24-46a4-92e3-91c1c45ab68f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140843Z:fd7842c3-bd24-46a4-92e3-91c1c45ab68f" ], + "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, 30 Jul 2020 14:08:42 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/e8a98d5d-ab6f-463c-bc0e-5703477026eb?api-version=2020-06-14+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/e8a98d5d-ab6f-463c-bc0e-5703477026eb?api-version=2020-06-14", + "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": [ "674", "675" ], - "x-ms-client-request-id": [ "a9d48aae-826b-4585-9c53-797b2cc257a0", "a9d48aae-826b-4585-9c53-797b2cc257a0" ], + "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": [ "a1ff706b-1288-415f-8cdb-fe13956a791f" ], - "Set-Cookie": [ "ARRAffinity=e777e8ea88c9e293f6b99e0ec0b12b9627e803a84c315dd302a6bfe0ac93d194;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "aa0827d0-9375-4eb5-ab0b-ed613c695a5c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140913Z:aa0827d0-9375-4eb5-ab0b-ed613c695a5c" ], + "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, 30 Jul 2020 14:09:13 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:06:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "494" ], + "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/e8a98d5d-ab6f-463c-bc0e-5703477026eb\",\"name\":\"e8a98d5d-ab6f-463c-bc0e-5703477026eb\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T14:08:43.144677Z\",\"endTime\":\"2020-07-30T14:08:45.301099Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"9d978ad0-ff7d-4c25-87b5-4e04033eb788\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "674", "675", "676" ], - "x-ms-client-request-id": [ "a9d48aae-826b-4585-9c53-797b2cc257a0", "a9d48aae-826b-4585-9c53-797b2cc257a0", "a9d48aae-826b-4585-9c53-797b2cc257a0" ], + "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": [ "02828413-de03-4dfb-ba94-140bd1f7446e" ], - "Set-Cookie": [ "ARRAffinity=e34cc694f88d2cbe7f9aacf6ad63bee7bccd1d260c3d4bca579a3d4cefc8109e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "52a6e719-7e76-4a9c-8c86-dd5e4dd34699" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140914Z:52a6e719-7e76-4a9c-8c86-dd5e4dd34699" ], + "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, 30 Jul 2020 14:09:13 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid/Databases/testdatabase5arkid\",\"name\":\"testcluster5arkid/testdatabase5arkid\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "677" ], - "x-ms-client-request-id": [ "8c8e1c6c-8913-47bc-b1bc-1cdf239bcb1a" ], + "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": [ "92f308d3-81ae-4b7c-a60f-5cc67fed1b10" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "8ace7dff-ab5c-4e0c-8821-f50753d76c22" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140914Z:8ace7dff-ab5c-4e0c-8821-f50753d76c22" ], + "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, 30 Jul 2020 14:09:14 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid\",\"name\":\"testfclusterkgb956/testdatabase5arkid\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"attachedDatabaseConfigurationName\":\"testdbconfkgb956\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "678" ], - "x-ms-client-request-id": [ "8ecf3807-257c-47d3-a2c8-8b333f539f96" ], + "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": [ "784929d9-cb48-4b49-ae92-03b697155a1b" ], - "Set-Cookie": [ "ARRAffinity=143347532b6a3621e54b1ff15e169f337a4c56c753a49654afbd694886935622;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "1f9047ca-cdf9-4858-a04f-2d40f3d056ca" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140914Z:1f9047ca-cdf9-4858-a04f-2d40f3d056ca" ], + "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, 30 Jul 2020 14:09:14 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid\",\"name\":\"testfclusterkgb956/testdatabase5arkid\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"attachedDatabaseConfigurationName\":\"testdbconfkgb956\",\"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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?api-version=2020-06-14", + "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/c42f8d36-f843-4662-853e-413d1a51b00c?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "f3620a81-0abc-41b7-bab1-8292d0f070dd" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c42f8d36-f843-4662-853e-413d1a51b00c?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=8e9bb04484c7a1d3a7fa7fc4a2bf55a3f5a227797a4fab2f0bb84163eae89308;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/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": [ "327695a8-739d-4e24-a815-c6e179c25a39" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140915Z:327695a8-739d-4e24-a815-c6e179c25a39" ], + "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, 30 Jul 2020 14:09:15 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid\",\"name\":\"testfclusterkgb956/testdatabase5arkid\",\"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/c42f8d36-f843-4662-853e-413d1a51b00c?api-version=2020-06-14+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/c42f8d36-f843-4662-853e-413d1a51b00c?api-version=2020-06-14", + "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": [ "679", "680" ], - "x-ms-client-request-id": [ "d68a159d-cfb1-4c88-be98-8967ef27c0dc", "d68a159d-cfb1-4c88-be98-8967ef27c0dc" ], + "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-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "16cdceee-f005-48e3-872a-e0519bcb272d" ], - "Set-Cookie": [ "ARRAffinity=bc8f9f0257500901a71d8bb509bda65a70da8abe3582d417b2f4eb67370855ff;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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-correlation-request-id": [ "1102e6da-2d24-4289-ad00-7836a687dc1b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140946Z:1102e6da-2d24-4289-ad00-7836a687dc1b" ], + "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, 30 Jul 2020 14:09:45 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:06:43 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/c42f8d36-f843-4662-853e-413d1a51b00c\",\"name\":\"c42f8d36-f843-4662-853e-413d1a51b00c\",\"status\":\"Succeeded\",\"startTime\":\"2020-07-30T14:09:15.8322905Z\",\"endTime\":\"2020-07-30T14:09:18.675299Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"162822ee-c135-4203-ad2f-98b0eeda5dc5\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + "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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?api-version=2020-06-14+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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid?api-version=2020-06-14", + "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": [ "679", "680", "681" ], - "x-ms-client-request-id": [ "d68a159d-cfb1-4c88-be98-8967ef27c0dc", "d68a159d-cfb1-4c88-be98-8967ef27c0dc", "d68a159d-cfb1-4c88-be98-8967ef27c0dc" ], + "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": [ "07572210-3cc2-4a5e-9b75-88a73ec72f0e" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.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": [ "a0805eba-5197-44d2-aa3e-d7bba7a27c56" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200730T140946Z:a0805eba-5197-44d2-aa3e-d7bba7a27c56" ], + "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, 30 Jul 2020 14:09:46 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/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testfclusterkgb956/Databases/testdatabase5arkid\",\"name\":\"testfclusterkgb956/testdatabase5arkid\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgroup5arkid/providers/Microsoft.Kusto/Clusters/testcluster5arkid\",\"attachedDatabaseConfigurationName\":\"testdbconfkgb956\",\"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 528a4a0d870b..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": "eventhubnsgridkgb956" + "value": "eventhubnsgridbgiwc7" }, "eventhubg_name": { - "value": "eventgridkgb956" + "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 844977853af9..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": "eventhubns5arkid" + "value": "eventhubnslbfexs" }, "eventhub_name": { - "value": "eventhub5arkid" + "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 434000e6e1e7..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": "storage5arkid" + "value": "storagelbfexs" } } } diff --git a/src/Kusto/test/env.json b/src/Kusto/test/env.json index cf9efc054940..2df07361ca6c 100644 --- a/src/Kusto/test/env.json +++ b/src/Kusto/test/env.json @@ -1,45 +1,42 @@ { - "eventhubNSNameForEventGrid": "eventhubnsgridkgb956", - "principalId1": "e60fe5c8-d6a5-4dee-b382-fb4502588dd0", - "skuTier": "Standard", - "attachedDatabaseConfigurationName": "testdbconfkgb956", + "eventhubName": "eventhublbfexs", + "iothubName": "iothublbfexs", + "rstr5": "r4qwo8", + "eventhubNameForEventGrid": "eventgridbgiwc7", "principalType": "App", - "databaseName1": null, - "followerClusterName": "testfclusterkgb956", - "eventhubNameForEventGrid": "eventgridkgb956", - "rstr6": "qynp9a", - "iothubSharedAccessPolicyName": "registryRead", - "updatedSkuName": "Standard_D12_v2", - "dataConnectionName": "testdataconnection5arkid", - "rstr4": "ani9hf", - "storageName": "storage5arkid", - "principalAssignmentName": "KustoClientsScenarioTest", - "databaseName": "testdatabase5arkid", - "resourceGroupName": "testgroup5arkid", - "dataFormat": "JSON", - "dataConnectionResourceType": "Microsoft.Kusto/Clusters/Databases/dataConnections", - "rstr5": "v8aetj", - "PlainClusterName": "testcluster0whu7z", - "tableName": "Events", - "skuName": "Standard_D11_v2", - "clusterPrincipalAssignmentResourceType": "Microsoft.Kusto/clusters/principalAssignments", "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "principalId": "713c3475-5021-4f3b-a650-eaa9a83f25a4", - "eventhubName": "eventhub5arkid", - "tableMappingName": "EventsMapping", - "iothubName": "iothub5arkid", - "principalRole": "AllDatabasesViewer", "langExt1": "R", - "databaseType": "Microsoft.Kusto/Clusters/Databases", - "SubscriptionId": "11d5f159-a21d-4a6c-8053-c3aae30057cf", - "langExt2": "PYTHON", - "principalAssignmentName1": "principalassignment1", - "clusterName": "testcluster5arkid", - "capacity": 2, - "databasePrincipalRole": "Viewer", + "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", - "eventhubNSName": "eventhubns5arkid", - "defaultPrincipalsModificationKind": "Union" + "databaseType": "Microsoft.Kusto/Clusters/Databases", + "defaultPrincipalsModificationKind": "Union", + "storageName": "storagelbfexs", + "clusterName": "testclusterlbfexs", + "principalAssignmentName1": "principalassignment1", + "databaseName": "testdatabaselbfexs", + "eventhubNSNameForEventGrid": "eventhubnsgridbgiwc7", + "SubscriptionId": "11d5f159-a21d-4a6c-8053-c3aae30057cf", + "principalRole": "AllDatabasesViewer", + "rstr6": "wmcyao", + "attachedDatabaseConfigurationName": "testdbconfbgiwc7", + "eventhubNSName": "eventhubnslbfexs", + "databaseName1": null, + "clusterPrincipalAssignmentResourceType": "Microsoft.Kusto/clusters/principalAssignments", + "updatedSkuName": "Standard_D12_v2", + "databasePrincipalRole": "Viewer", + "principalId1": "e60fe5c8-d6a5-4dee-b382-fb4502588dd0", + "langExt2": "PYTHON", + "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 06452d1801c6..10db47aa0445 100644 --- a/src/Kusto/test/utils.ps1 +++ b/src/Kusto/test/utils.ps1 @@ -94,19 +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 + # 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+ "h" - #$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 + "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 + "I" - # $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 -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 $env.location -Kind "IotHub" -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $env.iothubSharedAccessPolicyName -ConsumerGroup '$Default' # Deploy follower cluster for test $followerClusterName = "testfcluster" + $rstr2 From 287141f8de18af73fac116453c10aef35a976b47 Mon Sep 17 00:00:00 2001 From: Royi Shauli Date: Tue, 4 Aug 2020 11:57:55 +0300 Subject: [PATCH 08/13] fix tests --- .../test/Get-AzKustoClusterSku.Recording.json | 26 +- .../Get-AzKustoDataConnection.Recording.json | 30 +- ...stoDataConnectionValidation.Recording.json | 611 +++++++----------- ...-AzKustoDataConnectionValidation.Tests.ps1 | 18 +- 4 files changed, 278 insertions(+), 407 deletions(-) diff --git a/src/Kusto/test/Get-AzKustoClusterSku.Recording.json b/src/Kusto/test/Get-AzKustoClusterSku.Recording.json index 741cb7e1b872..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]+[NoScenario]+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/skus?api-version=2020-06-14+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-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "1" ], - "x-ms-client-request-id": [ "3a710550-19fd-47e6-b105-8d4a3e30568b" ], + "x-ms-client-request-id": [ "4f156658-4f1b-41a8-abd0-5556297d444d" ], "CommandName": [ "Get-AzKustoClusterSku" ], "FullCommandName": [ "Get-AzKustoClusterSku_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,13 +21,13 @@ "Headers": { "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-request-id": [ "9b9407be-2a68-4609-87aa-3742df2ba307" ], - "x-ms-correlation-request-id": [ "9b9407be-2a68-4609-87aa-3742df2ba307" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T071956Z:9b9407be-2a68-4609-87aa-3742df2ba307" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 03 Aug 2020 07:19:55 GMT" ] + "Date": [ "Tue, 04 Aug 2020 08:46:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "62986" ], @@ -37,14 +37,14 @@ "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]+[NoScenario]+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/skus?api-version=2020-06-14+2": { + "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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/skus?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "2" ], - "x-ms-client-request-id": [ "d01e2183-f756-44ca-82d7-0029d519fb5c" ], + "x-ms-client-request-id": [ "b989b6d5-6344-483e-9ee5-af4169d3a498" ], "CommandName": [ "Get-AzKustoClusterSku" ], "FullCommandName": [ "Get-AzKustoClusterSku_List1" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,14 +60,14 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-request-id": [ "699e0782-48cf-49e8-a568-f9c5c511ae09" ], - "x-ms-correlation-request-id": [ "5c922884-30ad-4c8d-bd8b-5fc39d287156" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T071958Z:5c922884-30ad-4c8d-bd8b-5fc39d287156" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 03 Aug 2020 07:19:58 GMT" ], - "Set-Cookie": [ "ARRAffinity=67658d3126ddf9428e4e2f36f09e574385ff742ffab2b8dcad942ecc1f8fdb67;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": { diff --git a/src/Kusto/test/Get-AzKustoDataConnection.Recording.json b/src/Kusto/test/Get-AzKustoDataConnection.Recording.json index f09a90d978dc..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]+[NoScenario]+$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": { + "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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnections?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "1" ], - "x-ms-client-request-id": [ "e81e33dd-fa89-48b5-8d88-63d8e3f8199c" ], + "x-ms-client-request-id": [ "482fb984-5cbf-418b-8773-1255b47fc474" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,14 +22,14 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "066381da-a518-4fd9-9510-b60445daa0d4" ], - "x-ms-correlation-request-id": [ "d4912a73-8fcc-48da-b912-a6dd2cb3f390" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T072717Z:d4912a73-8fcc-48da-b912-a6dd2cb3f390" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 03 Aug 2020 07:27:17 GMT" ], - "Set-Cookie": [ "ARRAffinity=7af73990d8c71bc2771b421e489b49b46347d66c21cd7ad1e741334df7cd91e4;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "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": { @@ -37,17 +37,17 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\"}},{\"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\"}}]}" + "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]+[NoScenario]+$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+2": { + "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/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "2" ], - "x-ms-client-request-id": [ "6ff3a51f-590a-4467-9888-6c5831f75a08" ], + "x-ms-client-request-id": [ "11451dee-2aab-400f-95de-14b7a51f71f9" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -63,15 +63,15 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "77c6d0b2-2d92-43d4-adf5-c323a59e9ab5" ], - "x-ms-correlation-request-id": [ "a269e389-9870-4b55-8c97-e36c4ca1d7b1" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T072718Z:a269e389-9870-4b55-8c97-e36c4ca1d7b1" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 03 Aug 2020 07:27:18 GMT" ], + "Date": [ "Tue, 04 Aug 2020 08:47:36 GMT" ], "ETag": [ "\"\"" ], - "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "Set-Cookie": [ "ARRAffinity=f7346eb7f858da6fcd7c812185c78354cd9c373cd01aac1f84617587dc510a4d;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { diff --git a/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Recording.json b/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Recording.json index e8d5e49a1c37..2ed046050f7f 100644 --- a/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Recording.json +++ b/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Recording.json @@ -14,35 +14,35 @@ "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/4c87a207-7ce9-49e2-8431-689b3ad62c11?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "c923f330-f000-498e-815c-eb8669a4285d" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4c87a207-7ce9-49e2-8431-689b3ad62c11?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], + "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": [ "bab1facf-86ab-4be7-8454-cb6d674e337a" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232914Z:bab1facf-86ab-4be7-8454-cb6d674e337a" ], + "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" ], - "Date": [ "Sun, 02 Aug 2020 23:29:13 GMT" ] + "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": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "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/4c87a207-7ce9-49e2-8431-689b3ad62c11?api-version=2020-06-14+2": { + "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/4c87a207-7ce9-49e2-8431-689b3ad62c11?api-version=2020-06-14", + "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": [ "178", "179" ], - "x-ms-client-request-id": [ "e0e3a404-8313-4141-9410-e5d7f5a32fc7", "e0e3a404-8313-4141-9410-e5d7f5a32fc7" ], + "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" ], @@ -55,35 +55,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": [ "03f9ae73-a68c-4e4b-b886-9c583e2afa2a" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "18310821-98ec-4221-9f84-216de097eea9" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232944Z:18310821-98ec-4221-9f84-216de097eea9" ], + "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" ], - "Date": [ "Sun, 02 Aug 2020 23:29:44 GMT" ] + "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": [ "507" ], + "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/4c87a207-7ce9-49e2-8431-689b3ad62c11\",\"name\":\"4c87a207-7ce9-49e2-8431-689b3ad62c11\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:29:14.4630502Z\",\"endTime\":\"2020-08-02T23:29:14.5411837Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"c91f9a01-6279-4e27-9a89-b6ae11fa3e12\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/4c87a207-7ce9-49e2-8431-689b3ad62c11?api-version=2020-06-14+3": { + "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/4c87a207-7ce9-49e2-8431-689b3ad62c11?api-version=2020-06-14", + "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": [ "178", "179", "180" ], - "x-ms-client-request-id": [ "e0e3a404-8313-4141-9410-e5d7f5a32fc7", "e0e3a404-8313-4141-9410-e5d7f5a32fc7", "e0e3a404-8313-4141-9410-e5d7f5a32fc7" ], + "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" ], @@ -96,59 +96,18 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "ecc5daca-d89f-4d82-a621-030d3feee3ba" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "79e97ae3-85fe-4ed5-ad18-fc20883ec9dd" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233015Z:79e97ae3-85fe-4ed5-ad18-fc20883ec9dd" ], + "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": [ "Sun, 02 Aug 2020 23:30:14 GMT" ] - }, - "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/4c87a207-7ce9-49e2-8431-689b3ad62c11\",\"name\":\"4c87a207-7ce9-49e2-8431-689b3ad62c11\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:29:14.4630502Z\",\"endTime\":\"2020-08-02T23:29:57.7590791Z\",\"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/4c87a207-7ce9-49e2-8431-689b3ad62c11?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/4c87a207-7ce9-49e2-8431-689b3ad62c11?api-version=2020-06-14\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "178", "179", "180", "181" ], - "x-ms-client-request-id": [ "e0e3a404-8313-4141-9410-e5d7f5a32fc7", "e0e3a404-8313-4141-9410-e5d7f5a32fc7", "e0e3a404-8313-4141-9410-e5d7f5a32fc7", "e0e3a404-8313-4141-9410-e5d7f5a32fc7" ], - "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "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", "Invoke-AzKustoDataConnectionValidation_Data" ], - "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": [ "297" ], - "x-ms-request-id": [ "d1229055-02d9-4843-b326-77dc7abf9319" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "bd3e444e-3a72-4ba8-a8b3-487f08e133f6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233015Z:bd3e444e-3a72-4ba8-a8b3-487f08e133f6" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sun, 02 Aug 2020 23:30:14 GMT" ] + "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" ], @@ -173,35 +132,35 @@ "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/9917f829-b644-4645-abb5-ee2ce1b8d468?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "e6567f2a-3656-40d6-8cb9-742b0f784c3a" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9917f829-b644-4645-abb5-ee2ce1b8d468?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], + "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": [ "b8c86f88-e990-46ed-b2e1-fbda28662d2c" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233015Z:b8c86f88-e990-46ed-b2e1-fbda28662d2c" ], + "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" ], - "Date": [ "Sun, 02 Aug 2020 23:30:15 GMT" ] + "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": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "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/9917f829-b644-4645-abb5-ee2ce1b8d468?api-version=2020-06-14+2": { + "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/9917f829-b644-4645-abb5-ee2ce1b8d468?api-version=2020-06-14", + "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": [ "182", "183" ], - "x-ms-client-request-id": [ "d30527b1-3b5f-45cc-9741-e4d1c0bc5033", "d30527b1-3b5f-45cc-9741-e4d1c0bc5033" ], + "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" ], @@ -214,35 +173,35 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], - "x-ms-request-id": [ "a0c37f90-53a9-426d-9a5f-3f84e3fc2816" ], - "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "de38d8ed-a78c-40f9-accc-10e5d131f248" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233046Z:de38d8ed-a78c-40f9-accc-10e5d131f248" ], + "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" ], - "Date": [ "Sun, 02 Aug 2020 23:30:45 GMT" ] + "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": [ "508" ], + "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/9917f829-b644-4645-abb5-ee2ce1b8d468\",\"name\":\"9917f829-b644-4645-abb5-ee2ce1b8d468\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:30:15.7518198Z\",\"endTime\":\"2020-08-02T23:30:20.127259Z\",\"percentComplete\":1.0,\"properties\":{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"},{\"ErrorMessage\":\"BlobStorageEventType {0} is not supported\"}]}}" + "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/9917f829-b644-4645-abb5-ee2ce1b8d468?api-version=2020-06-14\u0026operationResultResponseType=Location+3": { + "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/9917f829-b644-4645-abb5-ee2ce1b8d468?api-version=2020-06-14\u0026operationResultResponseType=Location", + "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": [ "182", "183", "184" ], - "x-ms-client-request-id": [ "d30527b1-3b5f-45cc-9741-e4d1c0bc5033", "d30527b1-3b5f-45cc-9741-e4d1c0bc5033", "d30527b1-3b5f-45cc-9741-e4d1c0bc5033" ], + "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" ], @@ -255,18 +214,18 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], - "x-ms-request-id": [ "4ec40357-fcfa-4fad-b935-d8138c793af4" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "196af223-c3b7-415e-a7db-f741d9402b97" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233046Z:196af223-c3b7-415e-a7db-f741d9402b97" ], + "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": [ "Sun, 02 Aug 2020 23:30:46 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": [ "164" ], @@ -291,35 +250,35 @@ "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/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "43ac7b61-1515-4863-8651-36164403d372" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], + "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": [ "089ef32f-522a-40f0-8055-68a0be0b91c2" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233046Z:089ef32f-522a-40f0-8055-68a0be0b91c2" ], + "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" ], - "Date": [ "Sun, 02 Aug 2020 23:30:46 GMT" ] + "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": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "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/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?api-version=2020-06-14+2": { + "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/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?api-version=2020-06-14", + "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": [ "185", "186" ], - "x-ms-client-request-id": [ "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d" ], + "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" ], @@ -332,35 +291,35 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "294" ], - "x-ms-request-id": [ "7799798c-15ed-4d31-83dd-c9c3fdf2a4d8" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b96d539e-80b6-4cd5-9e34-0d8293997d49" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233117Z:b96d539e-80b6-4cd5-9e34-0d8293997d49" ], + "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" ], - "Date": [ "Sun, 02 Aug 2020 23:31:16 GMT" ] + "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": [ "507" ], + "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/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8\",\"name\":\"fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:30:46.7856308Z\",\"endTime\":\"2020-08-02T23:30:46.8481984Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"1810c1bd-b530-4b62-b653-c3d01f8f9a9e\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + "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/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?api-version=2020-06-14+3": { + "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/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?api-version=2020-06-14", + "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": [ "185", "186", "187" ], - "x-ms-client-request-id": [ "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d" ], + "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" ], @@ -373,100 +332,18 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "293" ], - "x-ms-request-id": [ "ec0c2162-806b-4b6d-a052-442608f93b6d" ], - "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ad431339-b665-43ed-93ff-d40e3d059c85" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233147Z:ad431339-b665-43ed-93ff-d40e3d059c85" ], + "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": [ "Sun, 02 Aug 2020 23:31:46 GMT" ] - }, - "ContentHeaders": { - "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/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8\",\"name\":\"fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:30:46.7856308Z\",\"endTime\":\"2020-08-02T23:30:46.8481984Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"1810c1bd-b530-4b62-b653-c3d01f8f9a9e\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" - } - }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?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/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?api-version=2020-06-14", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "185", "186", "187", "188" ], - "x-ms-client-request-id": [ "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d" ], - "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "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", "Invoke-AzKustoDataConnectionValidation_Data" ], - "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": [ "292" ], - "x-ms-request-id": [ "d0865814-d4d1-4595-b215-ddde1d3a13d7" ], + "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" ], - "x-ms-correlation-request-id": [ "a548ddca-0b85-45cb-9ba2-cfcbbedc8bee" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233217Z:a548ddca-0b85-45cb-9ba2-cfcbbedc8bee" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sun, 02 Aug 2020 23:32:17 GMT" ] - }, - "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/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8\",\"name\":\"fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:30:46.7856308Z\",\"endTime\":\"2020-08-02T23:32:01.7506019Z\",\"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/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?api-version=2020-06-14\u0026operationResultResponseType=Location+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb98c9eb-13e8-4fc2-b4a5-3d5bccc5beb8?api-version=2020-06-14\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "185", "186", "187", "188", "189" ], - "x-ms-client-request-id": [ "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d", "fe3b53e5-9c54-4e9d-9209-ea57e2fe478d" ], - "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "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", "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], - "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-ratelimit-remaining-subscription-resource-requests": [ "291" ], - "x-ms-request-id": [ "45b76d02-6ade-44d8-a883-0701b5886c91" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "3365a510-63db-488f-a8bf-68b64ac750d7" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233217Z:3365a510-63db-488f-a8bf-68b64ac750d7" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sun, 02 Aug 2020 23:32:17 GMT" ] + "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { "Content-Length": [ "103" ], @@ -482,8 +359,8 @@ "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": [ "190" ], - "x-ms-client-request-id": [ "fe14c405-4e83-4fa9-a28c-b3c7faa19715" ], + "x-ms-unique-id": [ "10" ], + "x-ms-client-request-id": [ "8a0c7585-e37e-4f9e-b23b-d4d52b16b270" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -496,19 +373,19 @@ "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": [ "5abce4c1-b79c-4c54-bac9-ae3f972ae426" ], - "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "42a6e0d5-935d-42d4-8790-d9593b1172d3" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233218Z:42a6e0d5-935d-42d4-8790-d9593b1172d3" ], + "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": [ "Sun, 02 Aug 2020 23:32:17 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" ], @@ -533,35 +410,35 @@ "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/5062ce84-e2da-4687-90de-158b9db36185?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "cc5416e3-7309-4e04-9fbc-ce0e9ebb5bdc" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5062ce84-e2da-4687-90de-158b9db36185?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], + "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": [ "4f08ec86-ac58-486b-a81c-2bd67c10c359" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233218Z:4f08ec86-ac58-486b-a81c-2bd67c10c359" ], + "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" ], - "Date": [ "Sun, 02 Aug 2020 23:32:18 GMT" ] + "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": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "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/5062ce84-e2da-4687-90de-158b9db36185?api-version=2020-06-14+3": { + "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/5062ce84-e2da-4687-90de-158b9db36185?api-version=2020-06-14", + "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": [ "191", "192" ], - "x-ms-client-request-id": [ "4661e130-8fec-421e-8161-abb70f74244f", "4661e130-8fec-421e-8161-abb70f74244f" ], + "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" ], @@ -574,35 +451,35 @@ "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": [ "9e33865c-1cff-4753-ad99-5dc3c7375adb" ], - "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "fd4383c3-2503-47da-9c57-cf87c798dd39" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233248Z:fd4383c3-2503-47da-9c57-cf87c798dd39" ], + "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" ], - "Date": [ "Sun, 02 Aug 2020 23:32:48 GMT" ] + "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/5062ce84-e2da-4687-90de-158b9db36185\",\"name\":\"5062ce84-e2da-4687-90de-158b9db36185\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:32:18.6656822Z\",\"endTime\":\"2020-08-02T23:32:22.0949071Z\",\"percentComplete\":1.0,\"properties\":{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}}" + "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/5062ce84-e2da-4687-90de-158b9db36185?api-version=2020-06-14\u0026operationResultResponseType=Location+4": { + "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/5062ce84-e2da-4687-90de-158b9db36185?api-version=2020-06-14\u0026operationResultResponseType=Location", + "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": [ "191", "192", "193" ], - "x-ms-client-request-id": [ "4661e130-8fec-421e-8161-abb70f74244f", "4661e130-8fec-421e-8161-abb70f74244f", "4661e130-8fec-421e-8161-abb70f74244f" ], + "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" ], @@ -615,18 +492,18 @@ "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": [ "1ce493fe-7559-487d-aa73-9f44aa8f25a1" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "90de9c84-79cf-4bd9-ba36-613087776886" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233249Z:90de9c84-79cf-4bd9-ba36-613087776886" ], + "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": [ "Sun, 02 Aug 2020 23:32:48 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" ], @@ -642,8 +519,8 @@ "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": [ "194" ], - "x-ms-client-request-id": [ "d2c979dc-a80a-46b4-b4fd-c6a3180e0087" ], + "x-ms-unique-id": [ "14" ], + "x-ms-client-request-id": [ "84a194a8-297d-4dbb-a30c-d56398ce7f2c" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -656,19 +533,19 @@ "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": [ "5697321a-818b-460b-927f-0b861ad64688" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "92f26fa2-4a8d-407c-8ee3-1e1e8dbc28f2" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233249Z:92f26fa2-4a8d-407c-8ee3-1e1e8dbc28f2" ], + "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": [ "Sun, 02 Aug 2020 23:32:48 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" ], @@ -693,35 +570,35 @@ "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/4855b9a6-9674-4e91-b8e3-0b81852436f0?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "fdec28c5-c35f-4332-8b41-bc2fd9d0b932" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4855b9a6-9674-4e91-b8e3-0b81852436f0?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], + "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": [ "4dbf57bb-2d2e-4992-a917-8681da88b0d0" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233250Z:4dbf57bb-2d2e-4992-a917-8681da88b0d0" ], + "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" ], - "Date": [ "Sun, 02 Aug 2020 23:32:49 GMT" ] + "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": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "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/4855b9a6-9674-4e91-b8e3-0b81852436f0?api-version=2020-06-14+3": { + "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/4855b9a6-9674-4e91-b8e3-0b81852436f0?api-version=2020-06-14", + "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": [ "195", "196" ], - "x-ms-client-request-id": [ "0565b910-1b19-4ae7-af1f-04bd4f915491", "0565b910-1b19-4ae7-af1f-04bd4f915491" ], + "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" ], @@ -734,35 +611,35 @@ "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": [ "654ed9d0-de8a-4304-b4ae-5d75502abe73" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "15ead235-9a87-42c8-bac2-051c307a454d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233320Z:15ead235-9a87-42c8-bac2-051c307a454d" ], + "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" ], - "Date": [ "Sun, 02 Aug 2020 23:33:19 GMT" ] + "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/4855b9a6-9674-4e91-b8e3-0b81852436f0\",\"name\":\"4855b9a6-9674-4e91-b8e3-0b81852436f0\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:32:49.9296182Z\",\"endTime\":\"2020-08-02T23:32:52.7280413Z\",\"percentComplete\":1.0,\"properties\":{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"},{\"ErrorMessage\":\"BlobStorageEventType {0} is not supported\"}]}}" + "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/4855b9a6-9674-4e91-b8e3-0b81852436f0?api-version=2020-06-14\u0026operationResultResponseType=Location+4": { + "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/4855b9a6-9674-4e91-b8e3-0b81852436f0?api-version=2020-06-14\u0026operationResultResponseType=Location", + "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": [ "195", "196", "197" ], - "x-ms-client-request-id": [ "0565b910-1b19-4ae7-af1f-04bd4f915491", "0565b910-1b19-4ae7-af1f-04bd4f915491", "0565b910-1b19-4ae7-af1f-04bd4f915491" ], + "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" ], @@ -775,18 +652,18 @@ "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": [ "e44edc2f-7fee-4f72-8f6f-291812e50fc6" ], - "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c2a40192-0cff-49d7-9a3f-5488dc5b5f7f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233320Z:c2a40192-0cff-49d7-9a3f-5488dc5b5f7f" ], + "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": [ "Sun, 02 Aug 2020 23:33:20 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": [ "164" ], @@ -802,8 +679,8 @@ "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": [ "198" ], - "x-ms-client-request-id": [ "e56ef1ed-e2fc-474f-86ff-002b688b68a6" ], + "x-ms-unique-id": [ "18" ], + "x-ms-client-request-id": [ "676e6aeb-a8e1-4bb1-8ade-c87d57f390b0" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -816,19 +693,19 @@ "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": [ "3bc9439f-4853-453b-98f9-25f03ca5a61c" ], - "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "325ed901-7036-44ee-8c92-31c53724a0f6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233320Z:325ed901-7036-44ee-8c92-31c53724a0f6" ], + "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": [ "Sun, 02 Aug 2020 23:33:20 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" ], @@ -853,35 +730,35 @@ "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/6b4423e3-351f-47b3-84f7-03c8e3120ca6?api-version=2020-06-14\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "edfbf1ff-a1a7-4955-8943-5a50c93e0751" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6b4423e3-351f-47b3-84f7-03c8e3120ca6?api-version=2020-06-14" ], - "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], + "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": [ "bbbdc67f-d97b-4dd9-8be1-739cceeb1929" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233321Z:bbbdc67f-d97b-4dd9-8be1-739cceeb1929" ], + "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" ], - "Date": [ "Sun, 02 Aug 2020 23:33:21 GMT" ] + "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": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "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/6b4423e3-351f-47b3-84f7-03c8e3120ca6?api-version=2020-06-14+3": { + "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/6b4423e3-351f-47b3-84f7-03c8e3120ca6?api-version=2020-06-14", + "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": [ "199", "200" ], - "x-ms-client-request-id": [ "76c74690-9ed0-44bc-a5cc-ed66c4b0d8d2", "76c74690-9ed0-44bc-a5cc-ed66c4b0d8d2" ], + "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" ], @@ -894,35 +771,35 @@ "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": [ "e6700d00-0f7d-40e0-872f-f136f31560fc" ], - "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "f5b88d15-d7af-415a-9dd1-074ea91a5b50" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233351Z:f5b88d15-d7af-415a-9dd1-074ea91a5b50" ], + "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" ], - "Date": [ "Sun, 02 Aug 2020 23:33:50 GMT" ] + "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/6b4423e3-351f-47b3-84f7-03c8e3120ca6\",\"name\":\"6b4423e3-351f-47b3-84f7-03c8e3120ca6\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:33:21.2014131Z\",\"endTime\":\"2020-08-02T23:33:22.2171206Z\",\"percentComplete\":1.0,\"properties\":{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}}" + "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/6b4423e3-351f-47b3-84f7-03c8e3120ca6?api-version=2020-06-14\u0026operationResultResponseType=Location+4": { + "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/6b4423e3-351f-47b3-84f7-03c8e3120ca6?api-version=2020-06-14\u0026operationResultResponseType=Location", + "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": [ "199", "200", "201" ], - "x-ms-client-request-id": [ "76c74690-9ed0-44bc-a5cc-ed66c4b0d8d2", "76c74690-9ed0-44bc-a5cc-ed66c4b0d8d2", "76c74690-9ed0-44bc-a5cc-ed66c4b0d8d2" ], + "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" ], @@ -935,18 +812,18 @@ "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": [ "6bae8728-337a-405f-89dd-f34eacc46aa2" ], - "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "96d3b66d-ed31-4c26-8655-f8c519ec31d6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233351Z:96d3b66d-ed31-4c26-8655-f8c519ec31d6" ], + "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": [ "Sun, 02 Aug 2020 23:33:50 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" ], diff --git a/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Tests.ps1 b/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Tests.ps1 index bd363d3acada..e4d7e972b6af 100644 --- a/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Tests.ps1 +++ b/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Tests.ps1 @@ -26,8 +26,7 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" $kind = "EventHub" - $validationResult = Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -ConsumerGroup '$Default' -Compression "None" - $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' { @@ -44,8 +43,7 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $storageAccountResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Storage/storageAccounts/$storageAccountName" $kind = "EventGrid" - $validationResult = Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -ConsumerGroup '$Default' - $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' { @@ -60,8 +58,7 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $sharedAccessPolicyName = $env.iothubSharedAccessPolicyName $kind = "IotHub" - $validationResult = Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -ConsumerGroup '$Default' - $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' { @@ -77,8 +74,7 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $kind = "EventHub" $database = Get-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName - $validationResult = Invoke-AzKustoDataConnectionValidation -InputObject $database -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -ConsumerGroup '$Default' -Compression "None" - $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' { @@ -96,8 +92,7 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $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 -ConsumerGroup '$Default' - $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' { @@ -113,7 +108,6 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $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 -ConsumerGroup '$Default' - $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 } } From 61d7cbc777069378753f0cc59a790900ec8f6c83 Mon Sep 17 00:00:00 2001 From: astauben Date: Sun, 9 Aug 2020 10:41:34 +0300 Subject: [PATCH 09/13] Update .gitignore --- src/Kusto/.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Kusto/.gitignore b/src/Kusto/.gitignore index 649721c69ce9..e7954e8b91a8 100644 --- a/src/Kusto/.gitignore +++ b/src/Kusto/.gitignore @@ -4,6 +4,7 @@ obj generated internal exports +tools custom/*.psm1 test/*-TestResults.xml /*.ps1 @@ -11,4 +12,4 @@ test/*-TestResults.xml /*.psm1 /*.snk /*.csproj -/*.nuspec \ No newline at end of file +/*.nuspec From aaee433899e67e694b9bffbb0dde1c5bd9c78624 Mon Sep 17 00:00:00 2001 From: astauben Date: Sun, 9 Aug 2020 10:44:32 +0300 Subject: [PATCH 10/13] Update New-AzKustoDataConnection.md --- src/Kusto/examples/New-AzKustoDataConnection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ---- -------- ---- ---- From 5457e5b5a1c7bee709d7202f5194d7f713d0370c Mon Sep 17 00:00:00 2001 From: astauben Date: Sun, 9 Aug 2020 10:45:52 +0300 Subject: [PATCH 11/13] Update New-AzKustoCluster.md --- src/Kusto/examples/New-AzKustoCluster.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -------- ---- ---- ---- From 542cd1895273b107fbefff0988d861cc6b644dd3 Mon Sep 17 00:00:00 2001 From: Assaf Taubenfeld Date: Mon, 10 Aug 2020 10:56:28 +0300 Subject: [PATCH 12/13] remove tools --- src/Kusto/tools/Resources/.gitattributes | 1 - .../Resources/custom/New-AzDeployment.ps1 | 231 --- src/Kusto/tools/Resources/docs/readme.md | 11 - src/Kusto/tools/Resources/examples/readme.md | 11 - src/Kusto/tools/Resources/how-to.md | 58 - src/Kusto/tools/Resources/license.txt | 203 -- src/Kusto/tools/Resources/readme.md | 440 ----- .../CmdletSurface-latest-2019-04-30.md | 598 ------ .../tools/Resources/resources/ModelSurface.md | 1645 ----------------- src/Kusto/tools/Resources/resources/readme.md | 11 - src/Kusto/tools/Resources/test/readme.md | 17 - 11 files changed, 3226 deletions(-) delete mode 100644 src/Kusto/tools/Resources/.gitattributes delete mode 100644 src/Kusto/tools/Resources/custom/New-AzDeployment.ps1 delete mode 100644 src/Kusto/tools/Resources/docs/readme.md delete mode 100644 src/Kusto/tools/Resources/examples/readme.md delete mode 100644 src/Kusto/tools/Resources/how-to.md delete mode 100644 src/Kusto/tools/Resources/license.txt delete mode 100644 src/Kusto/tools/Resources/readme.md delete mode 100644 src/Kusto/tools/Resources/resources/CmdletSurface-latest-2019-04-30.md delete mode 100644 src/Kusto/tools/Resources/resources/ModelSurface.md delete mode 100644 src/Kusto/tools/Resources/resources/readme.md delete mode 100644 src/Kusto/tools/Resources/test/readme.md diff --git a/src/Kusto/tools/Resources/.gitattributes b/src/Kusto/tools/Resources/.gitattributes deleted file mode 100644 index 2125666142eb..000000000000 --- a/src/Kusto/tools/Resources/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -* text=auto \ No newline at end of file diff --git a/src/Kusto/tools/Resources/custom/New-AzDeployment.ps1 b/src/Kusto/tools/Resources/custom/New-AzDeployment.ps1 deleted file mode 100644 index 4ece0d887e46..000000000000 --- a/src/Kusto/tools/Resources/custom/New-AzDeployment.ps1 +++ /dev/null @@ -1,231 +0,0 @@ -function New-AzDeployment { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Resources.Models.Api20180501.IDeploymentExtended')] - [CmdletBinding(DefaultParameterSetName='CreateWithTemplateFileParameterFile', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Description('You can provide the template and parameters directly in the request or link to JSON files.')] - param( - [Parameter(HelpMessage='The name of the deployment. If not provided, the name of the template file will be used. If a template file is not used, a random GUID will be used for the name.')] - [Alias('DeploymentName')] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Runtime.Info(SerializedName='deploymentName', Required, PossibleTypes=([System.String]), Description='The name of the deployment.')] - [System.String] - # The name of the deployment. If not provided, the name of the template file will be used. If a template file is not used, a random GUID will be used for the name. - ${Name}, - - [Parameter(Mandatory, HelpMessage='The ID of the target subscription.')] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Runtime.Info(SerializedName='subscriptionId', Required, PossibleTypes=([System.String]), Description='The ID of the target subscription.')] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] - [System.String] - # The ID of the target subscription. - ${SubscriptionId}, - - [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterFile', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] - [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterJson', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] - [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterObject', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] - [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterFile', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] - [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterJson', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] - [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterObject', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] - [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterFile', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] - [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterJson', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] - [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterObject', Mandatory, HelpMessage='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Runtime.Info(SerializedName='resourceGroupName', Required, PossibleTypes=([System.String]), Description='The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist.')] - [System.String] - # The name of the resource group to deploy the resources to. The name is case insensitive. The resource group must already exist. - ${ResourceGroupName}, - - [Parameter(ParameterSetName='CreateWithTemplateFileParameterFile', Mandatory, HelpMessage='Local path to the JSON template file.')] - [Parameter(ParameterSetName='CreateWithTemplateFileParameterJson', Mandatory, HelpMessage='Local path to the JSON template file.')] - [Parameter(ParameterSetName='CreateWithTemplateFileParameterObject', Mandatory, HelpMessage='Local path to the JSON template file.')] - [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterFile', Mandatory, HelpMessage='Local path to the JSON template file.')] - [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterJson', Mandatory, HelpMessage='Local path to the JSON template file.')] - [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterObject', Mandatory, HelpMessage='Local path to the JSON template file.')] - [System.String] - # Local path to the JSON template file. - ${TemplateFile}, - - [Parameter(ParameterSetName='CreateWithTemplateJsonParameterFile', Mandatory, HelpMessage='The string representation of the JSON template.')] - [Parameter(ParameterSetName='CreateWithTemplateJsonParameterJson', Mandatory, HelpMessage='The string representation of the JSON template.')] - [Parameter(ParameterSetName='CreateWithTemplateJsonParameterObject', Mandatory, HelpMessage='The string representation of the JSON template.')] - [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterFile', Mandatory, HelpMessage='The string representation of the JSON template.')] - [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterJson', Mandatory, HelpMessage='The string representation of the JSON template.')] - [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterObject', Mandatory, HelpMessage='The string representation of the JSON template.')] - [System.String] - # The string representation of the JSON template. - ${TemplateJson}, - - [Parameter(ParameterSetName='CreateWithTemplateObjectParameterFile', Mandatory, HelpMessage='The hashtable representation of the JSON template.')] - [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterFile', Mandatory, HelpMessage='The hashtable representation of the JSON template.')] - [Parameter(ParameterSetName='CreateWithTemplateObjectParameterJson', Mandatory, HelpMessage='The hashtable representation of the JSON template.')] - [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterJson', Mandatory, HelpMessage='The hashtable representation of the JSON template.')] - [Parameter(ParameterSetName='CreateWithTemplateObjectParameterObject', Mandatory, HelpMessage='The hashtable representation of the JSON template.')] - [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterObject', Mandatory, HelpMessage='The hashtable representation of the JSON template.')] - [System.Collections.Hashtable] - # The hashtable representation of the JSON template. - ${TemplateObject}, - - [Parameter(ParameterSetName='CreateWithTemplateFileParameterFile', Mandatory, HelpMessage='Local path to the parameter JSON template file.')] - [Parameter(ParameterSetName='CreateWithTemplateJsonParameterFile', Mandatory, HelpMessage='Local path to the parameter JSON template file.')] - [Parameter(ParameterSetName='CreateWithTemplateObjectParameterFile', Mandatory, HelpMessage='Local path to the parameter JSON template file.')] - [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterFile', Mandatory, HelpMessage='Local path to the parameter JSON template file.')] - [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterFile', Mandatory, HelpMessage='Local path to the parameter JSON template file.')] - [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterFile', Mandatory, HelpMessage='Local path to the parameter JSON template file.')] - [System.String] - # Local path to the parameter JSON template file. - ${TemplateParameterFile}, - - [Parameter(ParameterSetName='CreateWithTemplateFileParameterJson', Mandatory, HelpMessage='The string representation of the parameter JSON template.')] - [Parameter(ParameterSetName='CreateWithTemplateJsonParameterJson', Mandatory, HelpMessage='The string representation of the parameter JSON template.')] - [Parameter(ParameterSetName='CreateWithTemplateObjectParameterJson', Mandatory, HelpMessage='The string representation of the parameter JSON template.')] - [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterJson', Mandatory, HelpMessage='The string representation of the parameter JSON template.')] - [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterJson', Mandatory, HelpMessage='The string representation of the parameter JSON template.')] - [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterJson', Mandatory, HelpMessage='The string representation of the parameter JSON template.')] - [System.String] - # The string representation of the parameter JSON template. - ${TemplateParameterJson}, - - [Parameter(ParameterSetName='CreateWithTemplateFileParameterObject', Mandatory, HelpMessage='The hashtable representation of the parameter JSON template.')] - [Parameter(ParameterSetName='CreateRGWithTemplateFileParameterObject', Mandatory, HelpMessage='The hashtable representation of the parameter JSON template.')] - [Parameter(ParameterSetName='CreateWithTemplateJsonParameterObject', Mandatory, HelpMessage='The hashtable representation of the parameter JSON template.')] - [Parameter(ParameterSetName='CreateRGWithTemplateJsonParameterObject', Mandatory, HelpMessage='The hashtable representation of the parameter JSON template.')] - [Parameter(ParameterSetName='CreateWithTemplateObjectParameterObject', Mandatory, HelpMessage='The hashtable representation of the parameter JSON template.')] - [Parameter(ParameterSetName='CreateRGWithTemplateObjectParameterObject', Mandatory, HelpMessage='The hashtable representation of the parameter JSON template.')] - [System.Collections.Hashtable] - # The hashtable representation of the parameter JSON template. - ${TemplateParameterObject}, - - [Parameter(Mandatory, HelpMessage='The mode that is used to deploy resources. This value can be either Incremental or Complete. In Incremental mode, resources are deployed without deleting existing resources that are not included in the template. In Complete mode, resources are deployed and existing resources in the resource group that are not included in the template are deleted. Be careful when using Complete mode as you may unintentionally delete resources.')] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Resources.Support.DeploymentMode])] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Runtime.Info(SerializedName='mode', Required, PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Resources.Support.DeploymentMode]), Description='The mode that is used to deploy resources. This value can be either Incremental or Complete. In Incremental mode, resources are deployed without deleting existing resources that are not included in the template. In Complete mode, resources are deployed and existing resources in the resource group that are not included in the template are deleted. Be careful when using Complete mode as you may unintentionally delete resources.')] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Support.DeploymentMode] - # The mode that is used to deploy resources. This value can be either Incremental or Complete. In Incremental mode, resources are deployed without deleting existing resources that are not included in the template. In Complete mode, resources are deployed and existing resources in the resource group that are not included in the template are deleted. Be careful when using Complete mode as you may unintentionally delete resources. - ${Mode}, - - [Parameter(HelpMessage='Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information you are passing in during deployment. By logging information about the request or response, you could potentially expose sensitive data that is retrieved through the deployment operations.')] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Runtime.Info(SerializedName='detailLevel', PossibleTypes=([System.String]), Description='Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information you are passing in during deployment. By logging information about the request or response, you could potentially expose sensitive data that is retrieved through the deployment operations.')] - [System.String] - # Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information you are passing in during deployment. By logging information about the request or response, you could potentially expose sensitive data that is retrieved through the deployment operations. - ${DeploymentDebugLogLevel}, - - [Parameter(HelpMessage='The location to store the deployment data.')] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Runtime.Info(SerializedName='location', PossibleTypes=([System.String]), Description='The location to store the deployment data.')] - [System.String] - # The location to store the deployment data. - ${Location}, - - [Parameter(HelpMessage='The credentials, account, tenant, and subscription used for communication with Azure.')] - [Alias('AzureRMContext', 'AzureCredential')] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Azure')] - [System.Management.Automation.PSObject] - # The credentials, account, tenant, and subscription used for communication with Azure. - ${DefaultProfile}, - - [Parameter(HelpMessage='Run the command as a job')] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Run the command as a job - ${AsJob}, - - [Parameter(HelpMessage='Run the command asynchronously')] - [Microsoft.Azure.PowerShell.Cmdlets.Resources.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Run the command asynchronously - ${NoWait} - - ) - - process { - if ($PSBoundParameters.ContainsKey("TemplateFile")) - { - if (!(Test-Path -Path $TemplateFile)) - { - throw "Unable to find template file '$TemplateFile'." - } - - if (!$PSBoundParameters.ContainsKey("Name")) - { - $DeploymentName = (Get-Item -Path $TemplateFile).BaseName - $null = $PSBoundParameters.Add("Name", $DeploymentName) - } - - $TemplateJson = [System.IO.File]::ReadAllText($TemplateFile) - $null = $PSBoundParameters.Add("Template", $TemplateJson) - $null = $PSBoundParameters.Remove("TemplateFile") - } - elseif ($PSBoundParameters.ContainsKey("TemplateJson")) - { - $null = $PSBoundParameters.Add("Template", $TemplateJson) - $null = $PSBoundParameters.Remove("TemplateJson") - } - elseif ($PSBoundParameters.ContainsKey("TemplateObject")) - { - $TemplateJson = ConvertTo-Json -InputObject $TemplateObject - $null = $PSBoundParameters.Add("Template", $TemplateJson) - $null = $PSBoundParameters.Remove("TemplateObject") - } - - if ($PSBoundParameters.ContainsKey("TemplateParameterFile")) - { - if (!(Test-Path -Path $TemplateParameterFile)) - { - throw "Unable to find template parameter file '$TemplateParameterFile'." - } - - $ParameterJson = [System.IO.File]::ReadAllText($TemplateParameterFile) - $ParameterObject = ConvertFrom-Json -InputObject $ParameterJson - $ParameterHashtable = @{} - $ParameterObject.PSObject.Properties | ForEach-Object { $ParameterHashtable[$_.Name] = $_.Value } - $ParameterHashtable.Remove("`$schema") - $ParameterHashtable.Remove("contentVersion") - $NestedValues = $ParameterHashtable.parameters - if ($null -ne $NestedValues) - { - $ParameterHashtable.Remove("parameters") - $NestedValues.PSObject.Properties | ForEach-Object { $ParameterHashtable[$_.Name] = $_.Value } - } - - $ParameterJson = ConvertTo-Json -InputObject $ParameterHashtable - $null = $PSBoundParameters.Add("DeploymentPropertyParameter", $ParameterJson) - $null = $PSBoundParameters.Remove("TemplateParameterFile") - } - elseif ($PSBoundParameters.ContainsKey("TemplateParameterJson")) - { - $null = $PSBoundParameters.Add("DeploymentPropertyParameter", $TemplateParameterJson) - $null = $PSBoundParameters.Remove("TemplateParameterJson") - } - elseif ($PSBoundParameters.ContainsKey("TemplateParameterObject")) - { - $TemplateParameterObject.Remove("`$schema") - $TemplateParameterObject.Remove("contentVersion") - $NestedValues = $TemplateParameterObject.parameters - if ($null -ne $NestedValues) - { - $TemplateParameterObject.Remove("parameters") - $NestedValues.PSObject.Properties | ForEach-Object { $TemplateParameterObject[$_.Name] = $_.Value } - } - - $TemplateParameterJson = ConvertTo-Json -InputObject $TemplateParameterObject - $null = $PSBoundParameters.Add("DeploymentPropertyParameter", $TemplateParameterJson) - $null = $PSBoundParameters.Remove("TemplateParameterObject") - } - - if (!$PSBoundParameters.ContainsKey("Name")) - { - $DeploymentName = (New-Guid).Guid - $null = $PSBoundParameters.Add("Name", $DeploymentName) - } - - if ($PSBoundParameters.ContainsKey("ResourceGroupName")) - { - Az.Resources.TestSupport.private\New-AzDeployment_CreateExpanded @PSBoundParameters - } - else - { - Az.Resources.TestSupport.private\New-AzDeployment_CreateExpanded @PSBoundParameters - } - } -} \ No newline at end of file diff --git a/src/Kusto/tools/Resources/docs/readme.md b/src/Kusto/tools/Resources/docs/readme.md deleted file mode 100644 index 95fb0e21daf2..000000000000 --- a/src/Kusto/tools/Resources/docs/readme.md +++ /dev/null @@ -1,11 +0,0 @@ -# Docs -This directory contains the documentation of the cmdlets for the `Az.Resources` module. To run documentation generation, use the `generate-help.ps1` script at the root module folder. Files in this folder will *always be overriden on regeneration*. To update documentation examples, please use the `..\examples` folder. - -## Info -- Modifiable: no -- Generated: all -- Committed: yes -- Packaged: yes - -## Details -The process of documentation generation loads `Az.Resources` and analyzes the exported cmdlets from the module. It recognizes the [help comments](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_comment_based_help) that are generated into the scripts in the `..\exports` folder. Additionally, when writing custom cmdlets in the `..\custom` folder, you can use the help comments syntax, which decorate the exported scripts at build-time. The documentation examples are taken from the `..\examples` folder. \ No newline at end of file diff --git a/src/Kusto/tools/Resources/examples/readme.md b/src/Kusto/tools/Resources/examples/readme.md deleted file mode 100644 index ac871d71fc72..000000000000 --- a/src/Kusto/tools/Resources/examples/readme.md +++ /dev/null @@ -1,11 +0,0 @@ -# Examples -This directory contains examples from the exported cmdlets of the module. When `build-module.ps1` is ran, example stub files will be generated here. If your module support Azure Profiles, the example stubs will be in individual profile folders. These example stubs should be updated to show how the cmdlet is used. The examples are imported into the documentation when `generate-help.ps1` is ran. - -## Info -- Modifiable: yes -- Generated: partial -- Committed: yes -- Packaged: no - -## Purpose -This separates the example documentation details from the generated documentation information provided directly from the generated cmdlets. Since the cmdlets don't have examples from the REST spec, this provides a means to add examples easily. The example stubs provide the markdown format that is required. The 3 core elements are: the name of the example, the code information of the example, and the description of the example. That information, if the markdown format is followed, will be available to documentation generation and be part of the documents in the `..\docs` folder. \ No newline at end of file diff --git a/src/Kusto/tools/Resources/how-to.md b/src/Kusto/tools/Resources/how-to.md deleted file mode 100644 index c4daf2b254cd..000000000000 --- a/src/Kusto/tools/Resources/how-to.md +++ /dev/null @@ -1,58 +0,0 @@ -# How-To -This document describes how to develop for `Az.Resources`. - -## Building `Az.Resources` -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.Resources` -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.Resources` -To pack `Az.Resources` 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.Resources`. -- `build-module.ps1` - - Builds the module DLL (`./bin/Az.Resources.private.dll`), creates the exported cmdlets and documentation, generates custom cmdlet test stubs and exported cmdlet example stubs, and updates `./Az.Resources.psd1` with Azure profile information. - - **Parameters**: [`Switch` parameters] - - `-Run`: After building, creates an isolated PowerShell session and loads `Az.Resources`. - - `-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.Resources` 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/tools/Resources/license.txt b/src/Kusto/tools/Resources/license.txt deleted file mode 100644 index 3d3f8f90d5d7..000000000000 --- a/src/Kusto/tools/Resources/license.txt +++ /dev/null @@ -1,203 +0,0 @@ -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 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/tools/Resources/readme.md b/src/Kusto/tools/Resources/readme.md deleted file mode 100644 index c39487848bfc..000000000000 --- a/src/Kusto/tools/Resources/readme.md +++ /dev/null @@ -1,440 +0,0 @@ - -# Az.Resources.TestSupport -This directory contains the PowerShell module for the Resources service. - ---- -## Status -[![Az.Resources.TestSupport](https://img.shields.io/powershellgallery/v/Az.Resources.TestSupport.svg?style=flat-square&label=Az.Resources.TestSupport "Az.Resources.TestSupport")](https://www.powershellgallery.com/packages/Az.Resources.TestSupport/) - -## Info -- Modifiable: yes -- Generated: all -- Committed: yes -- Packaged: yes - ---- -## Detail -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.8.1 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. - -## Development -For information on how to develop for `Az.Resources.TestSupport`, see [how-to.md](how-to.md). - - ---- -## Generation Requirements -Use of the beta version of `autorest.powershell` generator requires the following: -- [NodeJS LTS](https://nodejs.org) (10.15.x LTS preferred) - - **Note**: It *will not work* with Node < 10.x. Using 11.x builds may cause issues as they may introduce instability or breaking changes. -> If you want an easy way to install and update Node, [NVS - Node Version Switcher](../nodejs/installing-via-nvs.md) or [NVM - Node Version Manager](../nodejs/installing-via-nvm.md) is recommended. -- [AutoRest](https://aka.ms/autorest) v3 beta
`npm install -g @autorest/autorest`
  -- PowerShell 6.0 or greater - - If you don't have it installed, you can use the cross-platform npm package
`npm install -g pwsh`
  -- .NET Core SDK 2.0 or greater - - If you don't have it installed, you can use the cross-platform npm package
`npm install -g dotnet-sdk-2.2`
  - -## Run Generation -In this directory, run AutoRest: -> `autorest` - ---- -### AutoRest Configuration -> see https://aka.ms/autorest - -> Values -``` yaml -azure: true -powershell: true -branch: master -repo: https://github.com/Azure/azure-rest-api-specs/blob/master -metadata: - authors: Microsoft Corporation - owners: Microsoft Corporation - copyright: Microsoft Corporation. All rights reserved. - companyName: Microsoft Corporation - requireLicenseAcceptance: true - licenseUri: https://aka.ms/azps-license - projectUri: https://github.com/Azure/azure-powershell -``` - -> Names -``` yaml -prefix: Az -``` - -> Folders -``` yaml -clear-output-folder: true -``` - -``` yaml -input-file: - - https://github.com/Azure/azure-rest-api-specs/blob/master/specification/resources/resource-manager/Microsoft.Resources/stable/2018-05-01/resources.json -module-name: Az.Resources.TestSupport -namespace: Microsoft.Azure.PowerShell.Cmdlets.Resources - -subject-prefix: '' -module-version: 0.0.1 -title: Resources - -directive: - - where: - subject: Operation - hide: true - - where: - parameter-name: SubscriptionId - set: - default: - script: '(Get-AzContext).Subscription.Id' - - from: swagger-document - where: $..parameters[?(@.name=='$filter')] - transform: $['x-ms-skip-url-encoding'] = true - - from: swagger-document - where: $..[?( /Resources_(CreateOrUpdate|Update|Delete|Get|GetById|CheckExistence|CheckExistenceById)/g.exec(@.operationId))] - transform: "$.parameters = $.parameters.map( each => { each.name = each.name === 'api-version' ? 'explicit-api-version' : each.name; return each; } );" - - from: source-file-csharp - where: $ - transform: $ = $.replace(/explicit-api-version/g, 'api-version'); - - where: - parameter-name: ExplicitApiVersion - set: - parameter-name: ApiVersion - - from: source-file-csharp - where: $ - transform: > - $ = $.replace(/result.OdataNextLink/g,'nextLink' ); - return $.replace( /(^\s*)(if\s*\(\s*nextLink\s*!=\s*null\s*\))/gm, '$1var nextLink = Module.Instance.FixNextLink(responseMessage, result.OdataNextLink);\n$1$2' ); - - from: swagger-document - where: - - $..DeploymentProperties.properties.template - - $..DeploymentProperties.properties.parameters - - $..ResourceGroupExportResult.properties.template - - $..PolicyDefinitionProperties.properties.policyRule - transform: $.additionalProperties = true; - - where: - verb: Set - subject: Resource - remove: true - - where: - verb: Set - subject: Deployment - remove: true - - where: - subject: Resource - parameter-name: GroupName - set: - parameter-name: ResourceGroupName - clear-alias: true - - where: - subject: Resource - parameter-name: Id - set: - parameter-name: ResourceId - clear-alias: true - - where: - subject: Resource - parameter-name: Type - set: - parameter-name: ResourceType - clear-alias: true - - where: - subject: Appliance* - remove: true - - where: - verb: Test - subject: CheckNameAvailability - set: - subject: NameAvailability - - where: - verb: Export - subject: ResourceGroupTemplate - set: - subject: ResourceGroup - alias: Export-AzResourceGroupTemplate - - where: - parameter-name: Filter - set: - alias: ODataQuery - - where: - verb: Test - subject: ResourceGroupExistence - set: - subject: ResourceGroup - alias: Test-AzResourceGroupExistence - - where: - verb: Export - subject: DeploymentTemplate - set: - alias: [Save-AzDeploymentTemplate, Save-AzResourceGroupDeploymentTemplate] - - where: - subject: Deployment - set: - alias: ${verb}-AzResourceGroupDeployment - - where: - verb: Get - subject: DeploymentOperation - set: - alias: Get-AzResourceGroupDeploymentOperation - - where: - verb: New - subject: Deployment - variant: Create.*Expanded.* - parameter-name: Parameter - set: - parameter-name: DeploymentPropertyParameter - - where: - verb: New - subject: Deployment - hide: true - - where: - verb: Test - subject: Deployment - variant: Validate.*Expanded.* - parameter-name: Parameter - set: - parameter-name: DeploymentPropertyParameter - - where: - verb: New - subject: Deployment - parameter-name: DebugSettingDetailLevel - set: - parameter-name: DeploymentDebugLogLevel - - where: - subject: Provider - set: - subject: ResourceProvider - - where: - subject: ProviderFeature|ResourceProvider|ResourceLock - parameter-name: ResourceProviderNamespace - set: - alias: ProviderNamespace - - where: - verb: Update - subject: ResourceGroup - parameter-name: Name - clear-alias: true - - where: - parameter-name: UpnOrObjectId - set: - alias: ['UserPrincipalName', 'Upn', 'ObjectId'] - - where: - subject: Deployment - variant: (.*)Expanded(.*) - parameter-name: Parameter - set: - parameter-name: DeploymentParameter - # Format output - - where: - model-name: GenericResource - set: - format-table: - properties: - - Name - - ResourceGroupName - - Type - - Location - labels: - Type: ResourceType - - where: - model-name: ResourceGroup - set: - format-table: - properties: - - Name - - Location - - ProvisioningState - - where: - model-name: DeploymentExtended - set: - format-table: - properties: - - Name - - ProvisioningState - - Timestamp - - Mode - - where: - model-name: PolicyAssignment - set: - format-table: - properties: - - Name - - DisplayName - - Id - - where: - model-name: PolicyDefinition - set: - format-table: - properties: - - Name - - DisplayName - - Id - - where: - model-name: PolicySetDefinition - set: - format-table: - properties: - - Name - - DisplayName - - Id - - where: - model-name: Provider - set: - format-table: - properties: - - Namespace - - RegistrationState - - where: - model-name: ProviderResourceType - set: - format-table: - properties: - - ResourceType - - Location - - ApiVersion - - where: - model-name: FeatureResult - set: - format-table: - properties: - - Name - - State - - where: - model-name: TagDetails - set: - format-table: - properties: - - TagName - - CountValue - - where: - model-name: Application - set: - format-table: - properties: - - DisplayName - - ObjectId - - AppId - - Homepage - - AvailableToOtherTenant - - where: - model-name: KeyCredential - set: - format-table: - properties: - - StartDate - - EndDate - - KeyId - - Type - - where: - model-name: PasswordCredential - set: - format-table: - properties: - - StartDate - - EndDate - - KeyId - - where: - model-name: User - set: - format-table: - properties: - - PrincipalName - - DisplayName - - ObjectId - - Type - - where: - model-name: AdGroup - set: - format-table: - properties: - - DisplayName - - Mail - - ObjectId - - SecurityEnabled - - where: - model-name: ServicePrincipal - set: - format-table: - properties: - - DisplayName - - ObjectId - - AppDisplayName - - AppId - - where: - model-name: Location - set: - format-table: - properties: - - Name - - DisplayName - - where: - model-name: ManagementLockObject - set: - format-table: - properties: - - Name - - Level - - ResourceId - - where: - model-name: RoleAssignment - set: - format-table: - properties: - - DisplayName - - ObjectId - - ObjectType - - RoleDefinitionName - - Scope - - where: - model-name: RoleDefinition - set: - format-table: - properties: - - RoleName - - Name - - Action -# To remove cmdlets not used in the test frame - - where: - subject: Operation - remove: true - - where: - subject: Deployment - variant: (.*)1|Cancel(.*)|Validate(.*)|Export(.*)|List(.*)|Delete(.*)|Check(.*)|Calculate(.*) - remove: true - - where: - subject: ResourceProvider - variant: Register(.*)|Unregister(.*)|Get(.*) - remove: true - - where: - subject: ResourceGroup - variant: List(.*)|Update(.*)|Export(.*)|Move(.*) - remove: true - - where: - subject: Resource - remove: true - - where: - subject: Tag|TagValue - remove: true - - where: - subject: DeploymentOperation - remove: true - - where: - subject: DeploymentTemplate - remove: true - - where: - subject: Calculate(.*) - remove: true - - where: - subject: ResourceExistence - remove: true - - where: - subject: ResourceMoveResource - remove: true - - where: - subject: DeploymentExistence - remove: true -``` diff --git a/src/Kusto/tools/Resources/resources/CmdletSurface-latest-2019-04-30.md b/src/Kusto/tools/Resources/resources/CmdletSurface-latest-2019-04-30.md deleted file mode 100644 index 278ea694e0fa..000000000000 --- a/src/Kusto/tools/Resources/resources/CmdletSurface-latest-2019-04-30.md +++ /dev/null @@ -1,598 +0,0 @@ -### AzADApplication [Get, New, Remove, Update] `IApplication, Boolean` - - TenantId `String` - - ObjectId `String` - - IncludeDeleted `SwitchParameter` - - InputObject `IResourcesIdentity` - - HardDelete `SwitchParameter` - - Filter `String` - - IdentifierUri `String` - - DisplayNameStartWith `String` - - DisplayName `String` - - ApplicationId `String` - - AllowGuestsSignIn `SwitchParameter` - - AllowPassthroughUser `SwitchParameter` - - AppLogoUrl `String` - - AppPermission `String[]` - - AppRole `IAppRole[]` - - AvailableToOtherTenants `SwitchParameter` - - ErrorUrl `String` - - GroupMembershipClaim `GroupMembershipClaimTypes` - - Homepage `String` - - InformationalUrlMarketing `String` - - InformationalUrlPrivacy `String` - - InformationalUrlSupport `String` - - InformationalUrlTermsOfService `String` - - IsDeviceOnlyAuthSupported `SwitchParameter` - - KeyCredentials `IKeyCredential[]` - - KnownClientApplication `String[]` - - LogoutUrl `String` - - Oauth2AllowImplicitFlow `SwitchParameter` - - Oauth2AllowUrlPathMatching `SwitchParameter` - - Oauth2Permission `IOAuth2Permission[]` - - Oauth2RequirePostResponse `SwitchParameter` - - OptionalClaimAccessToken `IOptionalClaim[]` - - OptionalClaimIdToken `IOptionalClaim[]` - - OptionalClaimSamlToken `IOptionalClaim[]` - - OrgRestriction `String[]` - - PasswordCredentials `IPasswordCredential[]` - - PreAuthorizedApplication `IPreAuthorizedApplication[]` - - PublicClient `SwitchParameter` - - PublisherDomain `String` - - ReplyUrl `String[]` - - RequiredResourceAccess `IRequiredResourceAccess[]` - - SamlMetadataUrl `String` - - SignInAudience `String` - - WwwHomepage `String` - - Parameter `IApplicationCreateParameters` - - PassThru `SwitchParameter` - - AvailableToOtherTenant `SwitchParameter` - -### AzADApplicationOwner [Add, Get, Remove] `Boolean, IDirectoryObject` - - ObjectId `String` - - TenantId `String` - - InputObject `IResourcesIdentity` - - OwnerObjectId `String` - - AdditionalProperties `Hashtable` - - Url `String` - - Parameter `IAddOwnerParameters` - -### AzADDeletedApplication [Restore] `IApplication` - - ObjectId `String` - - TenantId `String` - - InputObject `IResourcesIdentity` - -### AzADGroup [Get, New, Remove] `IAdGroup, Boolean` - - TenantId `String` - - ObjectId `String` - - InputObject `IResourcesIdentity` - - Filter `String` - - DisplayNameStartsWith `String` - - DisplayName `String` - - AdditionalProperties `Hashtable` - - MailNickname `String` - - Parameter `IGroupCreateParameters` - - PassThru `SwitchParameter` - -### AzADGroupMember [Add, Get, Remove, Test] `Boolean, IDirectoryObject, SwitchParameter` - - GroupObjectId `String` - - TenantId `String` - - MemberObjectId `String[]` - - MemberUserPrincipalName `String[]` - - GroupObject `IAdGroup` - - GroupDisplayName `String` - - InputObject `IResourcesIdentity` - - ObjectId `String` - - ShowOwner `SwitchParameter` - - PassThru `SwitchParameter` - - AdditionalProperties `Hashtable` - - Url `String` - - Parameter `IGroupAddMemberParameters` - - DisplayName `String` - - GroupId `String` - - MemberId `String` - -### AzADGroupMemberGroup [Get] `String` - - ObjectId `String` - - TenantId `String` - - InputObject `IResourcesIdentity` - - AdditionalProperties `Hashtable` - - SecurityEnabledOnly `SwitchParameter` - - Parameter `IGroupGetMemberGroupsParameters` - -### AzADGroupOwner [Add, Remove] `Boolean` - - ObjectId `String` - - TenantId `String` - - GroupObjectId `String` - - MemberObjectId `String[]` - - InputObject `IResourcesIdentity` - - OwnerObjectId `String` - - PassThru `SwitchParameter` - - AdditionalProperties `Hashtable` - - Url `String` - - Parameter `IAddOwnerParameters` - -### AzADObject [Get] `IDirectoryObject` - - TenantId `String` - - InputObject `IResourcesIdentity` - - AdditionalProperties `Hashtable` - - IncludeDirectoryObjectReference `SwitchParameter` - - ObjectId `String[]` - - Type `String[]` - - Parameter `IGetObjectsParameters` - -### AzADServicePrincipal [Get, New, Remove, Update] `IServicePrincipal, Boolean` - - TenantId `String` - - ObjectId `String` - - InputObject `IResourcesIdentity` - - Filter `String` - - ApplicationObject `IApplication` - - ServicePrincipalName `String` - - DisplayNameBeginsWith `String` - - DisplayName `String` - - ApplicationId `String` - - AccountEnabled `SwitchParameter` - - AppId `String` - - AppRoleAssignmentRequired `SwitchParameter` - - KeyCredentials `IKeyCredential[]` - - PasswordCredentials `IPasswordCredential[]` - - ServicePrincipalType `String` - - Tag `String[]` - - Parameter `IServicePrincipalCreateParameters` - - PassThru `SwitchParameter` - -### AzADServicePrincipalOwner [Get] `IDirectoryObject` - - ObjectId `String` - - TenantId `String` - -### AzADUser [Get, New, Remove, Update] `IUser, Boolean` - - TenantId `String` - - UpnOrObjectId `String` - - InputObject `IResourcesIdentity` - - Filter `String` - - DisplayName `String` - - StartsWith `String` - - Mail `String` - - MailNickname `String` - - Parameter `IUserCreateParameters` - - AccountEnabled `SwitchParameter` - - GivenName `String` - - ImmutableId `String` - - PasswordProfile `IPasswordProfile` - - Surname `String` - - UsageLocation `String` - - UserPrincipalName `String` - - UserType `UserType` - - PassThru `SwitchParameter` - - EnableAccount `SwitchParameter` - -### AzADUserMemberGroup [Get] `String` - - ObjectId `String` - - TenantId `String` - - InputObject `IResourcesIdentity` - - AdditionalProperties `Hashtable` - - SecurityEnabledOnly `SwitchParameter` - - Parameter `IUserGetMemberGroupsParameters` - -### AzApplicationKeyCredentials [Get, Update] `IKeyCredential, Boolean` - - ObjectId `String` - - TenantId `String` - - InputObject `IResourcesIdentity` - - Parameter `IKeyCredentialsUpdateParameters` - - Value `IKeyCredential[]` - -### AzApplicationPasswordCredentials [Get, Update] `IPasswordCredential, Boolean` - - ObjectId `String` - - TenantId `String` - - InputObject `IResourcesIdentity` - - Parameter `IPasswordCredentialsUpdateParameters` - - Value `IPasswordCredential[]` - -### AzAuthorizationOperation [Get] `IOperation` - -### AzClassicAdministrator [Get] `IClassicAdministrator` - - SubscriptionId `String[]` - -### AzDenyAssignment [Get] `IDenyAssignment` - - Id `String` - - Scope `String` - - InputObject `IResourcesIdentity` - - ParentResourcePath `String` - - ResourceGroupName `String` - - ResourceName `String` - - ResourceProviderNamespace `String` - - ResourceType `String` - - SubscriptionId `String[]` - - Filter `String` - -### AzDeployment [Get, New, Remove, Set, Stop, Test] `IDeploymentExtended, Boolean, IDeploymentValidateResult` - - SubscriptionId `String[]` - - Name `String` - - ResourceGroupName `String` - - Id `String` - - InputObject `IResourcesIdentity` - - Filter `String` - - Top `Int32` - - Parameter `IDeployment` - - DebugSettingDetailLevel `String` - - Location `String` - - Mode `DeploymentMode` - - OnErrorDeploymentName `String` - - OnErrorDeploymentType `OnErrorDeploymentType` - - ParameterLinkContentVersion `String` - - ParameterLinkUri `String` - - Template `IDeploymentPropertiesTemplate` - - TemplateLinkContentVersion `String` - - TemplateLinkUri `String` - - PassThru `SwitchParameter` - -### AzDeploymentExistence [Test] `Boolean` - - DeploymentName `String` - - SubscriptionId `String` - - ResourceGroupName `String` - - InputObject `IResourcesIdentity` - -### AzDeploymentOperation [Get] `IDeploymentOperation` - - DeploymentName `String` - - SubscriptionId `String[]` - - ResourceGroupName `String` - - OperationId `String` - - DeploymentObject `IDeploymentExtended` - - InputObject `IResourcesIdentity` - - Top `Int32` - -### AzDeploymentTemplate [Export] `IDeploymentExportResultTemplate` - - DeploymentName `String` - - SubscriptionId `String` - - ResourceGroupName `String` - - InputObject `IResourcesIdentity` - -### AzDomain [Get] `IDomain` - - TenantId `String` - - Name `String` - - InputObject `IResourcesIdentity` - - Filter `String` - -### AzElevateGlobalAdministratorAccess [Invoke] `Boolean` - -### AzEntity [Get] `IEntityInfo` - - Filter `String` - - GroupName `String` - - Search `String` - - Select `String` - - Skip `Int32` - - Skiptoken `String` - - Top `Int32` - - View `String` - - CacheControl `String` - -### AzManagedApplication [Get, New, Remove, Set, Update] `IApplication, Boolean` - - Id `String` - - Name `String` - - ResourceGroupName `String` - - SubscriptionId `String[]` - - InputObject `IResourcesIdentity` - - Parameter `IApplication` - - ApplicationDefinitionId `String` - - IdentityType `ResourceIdentityType` - - Kind `String` - - Location `String` - - ManagedBy `String` - - ManagedResourceGroupId `String` - - PlanName `String` - - PlanProduct `String` - - PlanPromotionCode `String` - - PlanPublisher `String` - - PlanVersion `String` - - SkuCapacity `Int32` - - SkuFamily `String` - - SkuModel `String` - - SkuName `String` - - SkuSize `String` - - SkuTier `String` - - Tag `Hashtable` - -### AzManagedApplicationDefinition [Get, New, Remove, Set] `IApplicationDefinition, Boolean` - - Id `String` - - Name `String` - - ResourceGroupName `String` - - SubscriptionId `String[]` - - InputObject `IResourcesIdentity` - - Parameter `IApplicationDefinition` - - Artifact `IApplicationArtifact[]` - - Authorization `IApplicationProviderAuthorization[]` - - CreateUiDefinition `IApplicationDefinitionPropertiesCreateUiDefinition` - - Description `String` - - DisplayName `String` - - IdentityType `ResourceIdentityType` - - IsEnabled `String` - - Location `String` - - LockLevel `ApplicationLockLevel` - - MainTemplate `IApplicationDefinitionPropertiesMainTemplate` - - ManagedBy `String` - - PackageFileUri `String` - - SkuCapacity `Int32` - - SkuFamily `String` - - SkuModel `String` - - SkuName `String` - - SkuSize `String` - - SkuTier `String` - - Tag `Hashtable` - -### AzManagementGroup [Get, New, Remove, Set, Update] `IManagementGroup, IManagementGroupInfo, Boolean` - - GroupId `String` - - InputObject `IResourcesIdentity` - - Skiptoken `String` - - Expand `String` - - Filter `String` - - Recurse `SwitchParameter` - - CacheControl `String` - - DisplayName `String` - - Name `String` - - ParentId `String` - - CreateManagementGroupRequest `ICreateManagementGroupRequest` - - PatchGroupRequest `IPatchManagementGroupRequest` - -### AzManagementGroupDescendant [Get] `IDescendantInfo` - - GroupId `String` - - InputObject `IResourcesIdentity` - - Skiptoken `String` - - Top `Int32` - -### AzManagementGroupSubscription [New, Remove] `Boolean` - - GroupId `String` - - SubscriptionId `String` - - InputObject `IResourcesIdentity` - - CacheControl `String` - -### AzManagementLock [Get, New, Remove, Set] `IManagementLockObject, Boolean` - - SubscriptionId `String[]` - - LockName `String` - - ResourceGroupName `String` - - ParentResourcePath `String` - - ResourceName `String` - - ResourceProviderNamespace `String` - - ResourceType `String` - - Scope `String` - - InputObject `IResourcesIdentity` - - Filter `String` - - Level `LockLevel` - - Note `String` - - Owner `IManagementLockOwner[]` - - Parameter `IManagementLockObject` - -### AzNameAvailability [Test] `ICheckNameAvailabilityResult` - - Name `String` - - Type `Type` - - CheckNameAvailabilityRequest `ICheckNameAvailabilityRequest` - -### AzOAuth2PermissionGrant [Get, New, Remove] `IOAuth2PermissionGrant, Boolean` - - TenantId `String` - - InputObject `IResourcesIdentity` - - Filter `String` - - ClientId `String` - - ConsentType `ConsentType` - - ExpiryTime `String` - - ObjectId `String` - - OdataType `String` - - PrincipalId `String` - - ResourceId `String` - - Scope `String` - - StartTime `String` - - Body `IOAuth2PermissionGrant` - -### AzPermission [Get] `IPermission` - - ResourceGroupName `String` - - SubscriptionId `String[]` - - ParentResourcePath `String` - - ResourceName `String` - - ResourceProviderNamespace `String` - - ResourceType `String` - -### AzPolicyAssignment [Get, New, Remove] `IPolicyAssignment` - - Id `String` - - Name `String` - - Scope `String` - - InputObject `IResourcesIdentity` - - ParentResourcePath `String` - - ResourceGroupName `String` - - ResourceName `String` - - ResourceProviderNamespace `String` - - ResourceType `String` - - SubscriptionId `String[]` - - PolicyDefinitionId `String` - - IncludeDescendent `SwitchParameter` - - Filter `String` - - Parameter `IPolicyAssignment` - - Description `String` - - DisplayName `String` - - IdentityType `ResourceIdentityType` - - Location `String` - - Metadata `IPolicyAssignmentPropertiesMetadata` - - NotScope `String[]` - - SkuName `String` - - SkuTier `String` - - PropertiesScope `String` - -### AzPolicyDefinition [Get, New, Remove, Set] `IPolicyDefinition, Boolean` - - SubscriptionId `String[]` - - Name `String` - - ManagementGroupName `String` - - Id `String` - - InputObject `IResourcesIdentity` - - BuiltIn `SwitchParameter` - - Parameter `IPolicyDefinition` - - Description `String` - - DisplayName `String` - - Metadata `IPolicyDefinitionPropertiesMetadata` - - Mode `PolicyMode` - - PolicyRule `IPolicyDefinitionPropertiesPolicyRule` - - PolicyType `PolicyType` - - PassThru `SwitchParameter` - -### AzPolicySetDefinition [Get, New, Remove, Set] `IPolicySetDefinition, Boolean` - - SubscriptionId `String[]` - - Name `String` - - ManagementGroupName `String` - - Id `String` - - InputObject `IResourcesIdentity` - - BuiltIn `SwitchParameter` - - Parameter `IPolicySetDefinition` - - Description `String` - - DisplayName `String` - - Metadata `IPolicySetDefinitionPropertiesMetadata` - - PolicyDefinition `IPolicyDefinitionReference[]` - - PolicyType `PolicyType` - - PassThru `SwitchParameter` - -### AzProviderFeature [Get, Register] `IFeatureResult` - - SubscriptionId `String[]` - - Name `String` - - ResourceProviderNamespace `String` - - InputObject `IResourcesIdentity` - -### AzProviderOperationsMetadata [Get] `IProviderOperationsMetadata` - - ResourceProviderNamespace `String` - - InputObject `IResourcesIdentity` - - Expand `String` - -### AzResource [Get, Move, New, Remove, Set, Test, Update] `IGenericResource, Boolean` - - ResourceId `String` - - Name `String` - - ParentResourcePath `String` - - ProviderNamespace `String` - - ResourceGroupName `String` - - ResourceType `String` - - SubscriptionId `String[]` - - InputObject `IResourcesIdentity` - - SourceResourceGroupName `String` - - ResourceName `String` - - ResourceProviderNamespace `String` - - Expand `String` - - Top `Int32` - - TagName `String` - - TagValue `String` - - Tag `Hashtable` - - Filter `String` - - PassThru `SwitchParameter` - - Resource `String[]` - - TargetResourceGroup `String` - - TargetSubscriptionId `String` - - TargetResourceGroupName `String` - - Parameter `IResourcesMoveInfo` - - IdentityType `ResourceIdentityType` - - IdentityUserAssignedIdentity `Hashtable` - - Kind `String` - - Location `String` - - ManagedBy `String` - - PlanName `String` - - PlanProduct `String` - - PlanPromotionCode `String` - - PlanPublisher `String` - - PlanVersion `String` - - Property `IGenericResourceProperties` - - SkuCapacity `Int32` - - SkuFamily `String` - - SkuModel `String` - - SkuName `String` - - SkuSize `String` - - SkuTier `String` - -### AzResourceGroup [Export, Get, New, Remove, Set, Test, Update] `IResourceGroupExportResult, IResourceGroup, Boolean` - - ResourceGroupName `String` - - SubscriptionId `String` - - InputObject `IResourcesIdentity` - - Name `String` - - Id `String` - - Filter `String` - - Top `Int32` - - TagName `String` - - TagValue `String` - - Tag `Hashtable` - - Option `String` - - Resource `String[]` - - Parameter `IExportTemplateRequest` - - Location `String` - - ManagedBy `String` - -### AzResourceLink [Get, New, Remove, Set] `IResourceLink, Boolean` - - ResourceId `String` - - InputObject `IResourcesIdentity` - - SubscriptionId `String[]` - - Scope `String` - - FilterById `String` - - FilterByScope `Filter` - - Note `String` - - TargetId `String` - - Parameter `IResourceLink` - -### AzResourceMove [Test] `Boolean` - - SourceResourceGroupName `String` - - SubscriptionId `String` - - InputObject `IResourcesIdentity` - - PassThru `SwitchParameter` - - Resource `String[]` - - TargetResourceGroup `String` - - TargetSubscriptionId `String` - - TargetResourceGroupName `String` - - Parameter `IResourcesMoveInfo` - -### AzResourceProvider [Get, Register, Unregister] `IProvider` - - SubscriptionId `String[]` - - ResourceProviderNamespace `String` - - InputObject `IResourcesIdentity` - - Expand `String` - - Top `Int32` - -### AzResourceProviderOperationDetail [Get] `IResourceProviderOperationDefinition` - - ResourceProviderNamespace `String` - -### AzRoleAssignment [Get, New, Remove] `IRoleAssignment` - - Id `String` - - Name `String` - - Scope `String` - - RoleId `String` - - InputObject `IResourcesIdentity` - - ParentResourceId `String` - - ResourceGroupName `String` - - ResourceName `String` - - ResourceProviderNamespace `String` - - ResourceType `String` - - SubscriptionId `String[]` - - ExpandPrincipalGroups `String` - - ServicePrincipalName `String` - - SignInName `String` - - Filter `String` - - CanDelegate `SwitchParameter` - - PrincipalId `String` - - RoleDefinitionId `String` - - Parameter `IRoleAssignmentCreateParameters` - - PrincipalType `PrincipalType` - -### AzRoleDefinition [Get, New, Remove, Set] `IRoleDefinition` - - Id `String` - - Scope `String` - - InputObject `IResourcesIdentity` - - Name `String` - - Custom `SwitchParameter` - - Filter `String` - - AssignableScope `String[]` - - Description `String` - - Permission `IPermission[]` - - RoleName `String` - - RoleType `String` - - RoleDefinition `IRoleDefinition` - -### AzSubscriptionLocation [Get] `ILocation` - - SubscriptionId `String[]` - -### AzTag [Get, New, Remove] `ITagDetails, Boolean` - - SubscriptionId `String[]` - - Name `String` - - Value `String` - - InputObject `IResourcesIdentity` - - PassThru `SwitchParameter` - -### AzTenantBackfill [Start] `ITenantBackfillStatusResult` - -### AzTenantBackfillStatus [Invoke] `ITenantBackfillStatusResult` - diff --git a/src/Kusto/tools/Resources/resources/ModelSurface.md b/src/Kusto/tools/Resources/resources/ModelSurface.md deleted file mode 100644 index 378e3ec418a8..000000000000 --- a/src/Kusto/tools/Resources/resources/ModelSurface.md +++ /dev/null @@ -1,1645 +0,0 @@ -### AddOwnerParameters \ [Api16] - - Url `String` - -### AdGroup \ [Api16] - - DeletionTimestamp `DateTime?` **{MinValue, MaxValue}** - - DisplayName `String` - - Mail `String` - - MailEnabled `Boolean?` - - MailNickname `String` - - ObjectId `String` - - ObjectType `String` - - SecurityEnabled `Boolean?` - -### AliasPathType [Api20180501] - - ApiVersion `String[]` - - Path `String` - -### AliasType [Api20180501] - - Name `String` - - Path `IAliasPathType[]` - -### Appliance [Api20160901Preview] - - DefinitionId `String` - - Id `String` - - Identity `IIdentity` - - IdentityPrincipalId `String` - - IdentityTenantId `String` - - IdentityType `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** - - Kind `String` - - Location `String` - - ManagedBy `String` - - ManagedResourceGroupId `String` - - Name `String` - - Output `IAppliancePropertiesOutputs` - - Parameter `IAppliancePropertiesParameters` - - PlanName `String` - - PlanProduct `String` - - PlanPromotionCode `String` - - PlanPublisher `String` - - PlanVersion `String` - - ProvisioningState `String` - - Sku `ISku` - - SkuCapacity `Int32?` - - SkuFamily `String` - - SkuModel `String` - - SkuName `String` - - SkuSize `String` - - SkuTier `String` - - Tag `IResourceTags ` - - Type `String` - - UiDefinitionUri `String` - -### ApplianceArtifact [Api20160901Preview] - - Name `String` - - Type `ApplianceArtifactType?` **{Custom, Template}** - - Uri `String` - -### ApplianceDefinition [Api20160901Preview] - - Artifact `IApplianceArtifact[]` - - Authorization `IApplianceProviderAuthorization[]` - - Description `String` - - DisplayName `String` - - Id `String` - - Identity `IIdentity` - - IdentityPrincipalId `String` - - IdentityTenantId `String` - - IdentityType `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** - - Location `String` - - LockLevel `ApplianceLockLevel` **{CanNotDelete, None, ReadOnly}** - - ManagedBy `String` - - Name `String` - - PackageFileUri `String` - - Sku `ISku` - - SkuCapacity `Int32?` - - SkuFamily `String` - - SkuModel `String` - - SkuName `String` - - SkuSize `String` - - SkuTier `String` - - Tag `IResourceTags ` - - Type `String` - -### ApplianceDefinitionListResult [Api20160901Preview] - - NextLink `String` - - Value `IApplianceDefinition[]` - -### ApplianceDefinitionProperties [Api20160901Preview] - - Artifact `IApplianceArtifact[]` - - Authorization `IApplianceProviderAuthorization[]` - - Description `String` - - DisplayName `String` - - LockLevel `ApplianceLockLevel` **{CanNotDelete, None, ReadOnly}** - - PackageFileUri `String` - -### ApplianceListResult [Api20160901Preview] - - NextLink `String` - - Value `IAppliance[]` - -### AppliancePatchable [Api20160901Preview] - - ApplianceDefinitionId `String` - - Id `String` - - Identity `IIdentity` - - IdentityPrincipalId `String` - - IdentityTenantId `String` - - IdentityType `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** - - Kind `String` - - Location `String` - - ManagedBy `String` - - ManagedResourceGroupId `String` - - Name `String` - - Output `IAppliancePropertiesPatchableOutputs` - - Parameter `IAppliancePropertiesPatchableParameters` - - PlanName `String` - - PlanProduct `String` - - PlanPromotionCode `String` - - PlanPublisher `String` - - PlanVersion `String` - - ProvisioningState `String` - - Sku `ISku` - - SkuCapacity `Int32?` - - SkuFamily `String` - - SkuModel `String` - - SkuName `String` - - SkuSize `String` - - SkuTier `String` - - Tag `IResourceTags ` - - Type `String` - - UiDefinitionUri `String` - -### ApplianceProperties [Api20160901Preview] - - ApplianceDefinitionId `String` - - ManagedResourceGroupId `String` - - Output `IAppliancePropertiesOutputs` - - Parameter `IAppliancePropertiesParameters` - - ProvisioningState `String` - - UiDefinitionUri `String` - -### AppliancePropertiesPatchable [Api20160901Preview] - - ApplianceDefinitionId `String` - - ManagedResourceGroupId `String` - - Output `IAppliancePropertiesPatchableOutputs` - - Parameter `IAppliancePropertiesPatchableParameters` - - ProvisioningState `String` - - UiDefinitionUri `String` - -### ApplianceProviderAuthorization [Api20160901Preview] - - PrincipalId `String` - - RoleDefinitionId `String` - -### Application \ [Api16, Api20170901, Api20180601] - - AllowGuestsSignIn `Boolean?` - - AllowPassthroughUser `Boolean?` - - AppId `String` - - AppLogoUrl `String` - - AppPermission `String[]` - - AppRole `IAppRole[]` - - AvailableToOtherTenant `Boolean?` - - DefinitionId `String` - - DeletionTimestamp `DateTime?` **{MinValue, MaxValue}** - - DisplayName `String` - - ErrorUrl `String` - - GroupMembershipClaim `GroupMembershipClaimTypes?` **{All, None, SecurityGroup}** - - Homepage `String` - - Id `String` - - IdentifierUri `String[]` - - Identity `IIdentity` - - IdentityPrincipalId `String` - - IdentityTenantId `String` - - IdentityType `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** - - InformationalUrlMarketing `String` - - InformationalUrlPrivacy `String` - - InformationalUrlSupport `String` - - InformationalUrlTermsOfService `String` - - IsDeviceOnlyAuthSupported `Boolean?` - - KeyCredentials `IKeyCredential[]` - - Kind `String` - - KnownClientApplication `String[]` - - Location `String` - - LogoutUrl `String` - - ManagedBy `String` - - ManagedResourceGroupId `String` - - Name `String` - - Oauth2AllowImplicitFlow `Boolean?` - - Oauth2AllowUrlPathMatching `Boolean?` - - Oauth2Permission `IOAuth2Permission[]` - - Oauth2RequirePostResponse `Boolean?` - - ObjectId `String` - - ObjectType `String` - - OptionalClaimAccessToken `IOptionalClaim[]` - - OptionalClaimIdToken `IOptionalClaim[]` - - OptionalClaimSamlToken `IOptionalClaim[]` - - OrgRestriction `String[]` - - Output `IApplicationPropertiesOutputs` - - Parameter `IApplicationPropertiesParameters` - - PasswordCredentials `IPasswordCredential[]` - - PlanName `String` - - PlanProduct `String` - - PlanPromotionCode `String` - - PlanPublisher `String` - - PlanVersion `String` - - PreAuthorizedApplication `IPreAuthorizedApplication[]` - - ProvisioningState `String` - - PublicClient `Boolean?` - - PublisherDomain `String` - - ReplyUrl `String[]` - - RequiredResourceAccess `IRequiredResourceAccess[]` - - SamlMetadataUrl `String` - - SignInAudience `String` - - Sku `ISku` - - SkuCapacity `Int32?` - - SkuFamily `String` - - SkuModel `String` - - SkuName `String` - - SkuSize `String` - - SkuTier `String` - - Tag `IResourceTags ` - - Type `String` - - UiDefinitionUri `String` - - WwwHomepage `String` - -### ApplicationArtifact [Api20170901] - - Name `String` - - Type `ApplicationArtifactType?` **{Custom, Template}** - - Uri `String` - -### ApplicationBase [Api16] - - AllowGuestsSignIn `Boolean?` - - AllowPassthroughUser `Boolean?` - - AppLogoUrl `String` - - AppPermission `String[]` - - AppRole `IAppRole[]` - - AvailableToOtherTenant `Boolean?` - - ErrorUrl `String` - - GroupMembershipClaim `GroupMembershipClaimTypes?` **{All, None, SecurityGroup}** - - Homepage `String` - - InformationalUrlMarketing `String` - - InformationalUrlPrivacy `String` - - InformationalUrlSupport `String` - - InformationalUrlTermsOfService `String` - - IsDeviceOnlyAuthSupported `Boolean?` - - KeyCredentials `IKeyCredential[]` - - KnownClientApplication `String[]` - - LogoutUrl `String` - - Oauth2AllowImplicitFlow `Boolean?` - - Oauth2AllowUrlPathMatching `Boolean?` - - Oauth2Permission `IOAuth2Permission[]` - - Oauth2RequirePostResponse `Boolean?` - - OptionalClaimAccessToken `IOptionalClaim[]` - - OptionalClaimIdToken `IOptionalClaim[]` - - OptionalClaimSamlToken `IOptionalClaim[]` - - OrgRestriction `String[]` - - PasswordCredentials `IPasswordCredential[]` - - PreAuthorizedApplication `IPreAuthorizedApplication[]` - - PublicClient `Boolean?` - - PublisherDomain `String` - - ReplyUrl `String[]` - - RequiredResourceAccess `IRequiredResourceAccess[]` - - SamlMetadataUrl `String` - - SignInAudience `String` - - WwwHomepage `String` - -### ApplicationCreateParameters [Api16] - - AllowGuestsSignIn `Boolean?` - - AllowPassthroughUser `Boolean?` - - AppLogoUrl `String` - - AppPermission `String[]` - - AppRole `IAppRole[]` - - AvailableToOtherTenant `Boolean?` - - DisplayName `String` - - ErrorUrl `String` - - GroupMembershipClaim `GroupMembershipClaimTypes?` **{All, None, SecurityGroup}** - - Homepage `String` - - IdentifierUri `String[]` - - InformationalUrl `IInformationalUrl` - - InformationalUrlMarketing `String` - - InformationalUrlPrivacy `String` - - InformationalUrlSupport `String` - - InformationalUrlTermsOfService `String` - - IsDeviceOnlyAuthSupported `Boolean?` - - KeyCredentials `IKeyCredential[]` - - KnownClientApplication `String[]` - - LogoutUrl `String` - - Oauth2AllowImplicitFlow `Boolean?` - - Oauth2AllowUrlPathMatching `Boolean?` - - Oauth2Permission `IOAuth2Permission[]` - - Oauth2RequirePostResponse `Boolean?` - - OptionalClaim `IOptionalClaims` - - OptionalClaimAccessToken `IOptionalClaim[]` - - OptionalClaimIdToken `IOptionalClaim[]` - - OptionalClaimSamlToken `IOptionalClaim[]` - - OrgRestriction `String[]` - - PasswordCredentials `IPasswordCredential[]` - - PreAuthorizedApplication `IPreAuthorizedApplication[]` - - PublicClient `Boolean?` - - PublisherDomain `String` - - ReplyUrl `String[]` - - RequiredResourceAccess `IRequiredResourceAccess[]` - - SamlMetadataUrl `String` - - SignInAudience `String` - - WwwHomepage `String` - -### ApplicationDefinition [Api20170901] - - Artifact `IApplicationArtifact[]` - - Authorization `IApplicationProviderAuthorization[]` - - CreateUiDefinition `IApplicationDefinitionPropertiesCreateUiDefinition` - - Description `String` - - DisplayName `String` - - Id `String` - - Identity `IIdentity` - - IdentityPrincipalId `String` - - IdentityTenantId `String` - - IdentityType `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** - - IsEnabled `String` - - Location `String` - - LockLevel `ApplicationLockLevel` **{CanNotDelete, None, ReadOnly}** - - MainTemplate `IApplicationDefinitionPropertiesMainTemplate` - - ManagedBy `String` - - Name `String` - - PackageFileUri `String` - - Sku `ISku` - - SkuCapacity `Int32?` - - SkuFamily `String` - - SkuModel `String` - - SkuName `String` - - SkuSize `String` - - SkuTier `String` - - Tag `IResourceTags ` - - Type `String` - -### ApplicationDefinitionListResult [Api20180601] - - NextLink `String` - - Value `IApplicationDefinition[]` - -### ApplicationDefinitionProperties [Api20170901] - - Artifact `IApplicationArtifact[]` - - Authorization `IApplicationProviderAuthorization[]` - - CreateUiDefinition `IApplicationDefinitionPropertiesCreateUiDefinition` - - Description `String` - - DisplayName `String` - - IsEnabled `String` - - LockLevel `ApplicationLockLevel` **{CanNotDelete, None, ReadOnly}** - - MainTemplate `IApplicationDefinitionPropertiesMainTemplate` - - PackageFileUri `String` - -### ApplicationListResult [Api16, Api20180601] - - NextLink `String` - - OdataNextLink `String` - - Value `IApplication[]` - -### ApplicationPatchable [Api20170901, Api20180601] - - ApplicationDefinitionId `String` - - Id `String` - - Identity `IIdentity` - - IdentityPrincipalId `String` - - IdentityTenantId `String` - - IdentityType `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** - - Kind `String` - - Location `String` - - ManagedBy `String` - - ManagedResourceGroupId `String` - - Name `String` - - Output `IApplicationPropertiesPatchableOutputs` - - Parameter `IApplicationPropertiesPatchableParameters` - - PlanName `String` - - PlanProduct `String` - - PlanPromotionCode `String` - - PlanPublisher `String` - - PlanVersion `String` - - ProvisioningState `String` - - Sku `ISku` - - SkuCapacity `Int32?` - - SkuFamily `String` - - SkuModel `String` - - SkuName `String` - - SkuSize `String` - - SkuTier `String` - - Tag `IResourceTags ` - - Type `String` - - UiDefinitionUri `String` - -### ApplicationProperties [Api20170901, Api20180601] - - ApplicationDefinitionId `String` - - ManagedResourceGroupId `String` - - Output `IApplicationPropertiesOutputs` - - Parameter `IApplicationPropertiesParameters` - - ProvisioningState `String` - - UiDefinitionUri `String` - -### ApplicationPropertiesPatchable [Api20170901, Api20180601] - - ApplicationDefinitionId `String` - - ManagedResourceGroupId `String` - - Output `IApplicationPropertiesPatchableOutputs` - - Parameter `IApplicationPropertiesPatchableParameters` - - ProvisioningState `String` - - UiDefinitionUri `String` - -### ApplicationProviderAuthorization [Api20170901] - - PrincipalId `String` - - RoleDefinitionId `String` - -### ApplicationUpdateParameters [Api16] - - AllowGuestsSignIn `Boolean?` - - AllowPassthroughUser `Boolean?` - - AppLogoUrl `String` - - AppPermission `String[]` - - AppRole `IAppRole[]` - - AvailableToOtherTenant `Boolean?` - - DisplayName `String` - - ErrorUrl `String` - - GroupMembershipClaim `GroupMembershipClaimTypes?` **{All, None, SecurityGroup}** - - Homepage `String` - - IdentifierUri `String[]` - - InformationalUrl `IInformationalUrl` - - InformationalUrlMarketing `String` - - InformationalUrlPrivacy `String` - - InformationalUrlSupport `String` - - InformationalUrlTermsOfService `String` - - IsDeviceOnlyAuthSupported `Boolean?` - - KeyCredentials `IKeyCredential[]` - - KnownClientApplication `String[]` - - LogoutUrl `String` - - Oauth2AllowImplicitFlow `Boolean?` - - Oauth2AllowUrlPathMatching `Boolean?` - - Oauth2Permission `IOAuth2Permission[]` - - Oauth2RequirePostResponse `Boolean?` - - OptionalClaim `IOptionalClaims` - - OptionalClaimAccessToken `IOptionalClaim[]` - - OptionalClaimIdToken `IOptionalClaim[]` - - OptionalClaimSamlToken `IOptionalClaim[]` - - OrgRestriction `String[]` - - PasswordCredentials `IPasswordCredential[]` - - PreAuthorizedApplication `IPreAuthorizedApplication[]` - - PublicClient `Boolean?` - - PublisherDomain `String` - - ReplyUrl `String[]` - - RequiredResourceAccess `IRequiredResourceAccess[]` - - SamlMetadataUrl `String` - - SignInAudience `String` - - WwwHomepage `String` - -### AppRole [Api16] - - AllowedMemberType `String[]` - - Description `String` - - DisplayName `String` - - Id `String` - - IsEnabled `Boolean?` - - Value `String` - -### BasicDependency [Api20180501] - - Id `String` - - ResourceName `String` - - ResourceType `String` - -### CheckGroupMembershipParameters \ [Api16] - - GroupId `String` - - MemberId `String` - -### CheckGroupMembershipResult \ [Api16] - - Value `Boolean?` - -### CheckNameAvailabilityRequest [Api20180301Preview] - - Name `String` - - Type `Type?` **{ProvidersMicrosoftManagementGroups}** - -### CheckNameAvailabilityResult [Api20180301Preview] - - Message `String` - - NameAvailable `Boolean?` - - Reason `Reason?` **{AlreadyExists, Invalid}** - -### ClassicAdministrator [Api20150701] - - EmailAddress `String` - - Id `String` - - Name `String` - - Role `String` - - Type `String` - -### ClassicAdministratorListResult [Api20150701] - - NextLink `String` - - Value `IClassicAdministrator[]` - -### ClassicAdministratorProperties [Api20150701] - - EmailAddress `String` - - Role `String` - -### ComponentsSchemasIdentityPropertiesUserassignedidentitiesAdditionalproperties [Api20180501] - - ClientId `String` - - PrincipalId `String` - -### CreateManagementGroupChildInfo [Api20180301Preview] - - Child `ICreateManagementGroupChildInfo[]` - - DisplayName `String` - - Id `String` - - Name `String` - - Role `String[]` - - Type `String` - -### CreateManagementGroupDetails [Api20180301Preview] - - ParentDisplayName `String` - - ParentId `String` - - ParentName `String` - - UpdatedBy `String` - - UpdatedTime `DateTime?` **{MinValue, MaxValue}** - - Version `Single?` - -### CreateManagementGroupProperties [Api20180301Preview] - - Child `ICreateManagementGroupChildInfo[]` - - DetailUpdatedBy `String` - - DetailUpdatedTime `DateTime?` **{MinValue, MaxValue}** - - DetailVersion `Single?` - - DisplayName `String` - - ParentDisplayName `String` - - ParentId `String` - - ParentName `String` - - Role `String[]` - - TenantId `String` - -### CreateManagementGroupRequest [Api20180301Preview] - - Child `ICreateManagementGroupChildInfo[]` - - DetailUpdatedBy `String` - - DetailUpdatedTime `DateTime?` **{MinValue, MaxValue}** - - DetailVersion `Single?` - - DisplayName `String` - - Id `String` - - Name `String` - - ParentDisplayName `String` - - ParentId `String` - - ParentName `String` - - Role `String[]` - - TenantId `String` - - Type `String` - -### CreateParentGroupInfo [Api20180301Preview] - - DisplayName `String` - - Id `String` - - Name `String` - -### DebugSetting [Api20180501] - - DetailLevel `String` - -### DenyAssignment [Api20180701Preview] - - DenyAssignmentName `String` - - Description `String` - - DoNotApplyToChildScope `Boolean?` - - ExcludePrincipal `IPrincipal[]` - - Id `String` - - IsSystemProtected `Boolean?` - - Name `String` - - Permission `IDenyAssignmentPermission[]` - - Principal `IPrincipal[]` - - Scope `String` - - Type `String` - -### DenyAssignmentListResult [Api20180701Preview] - - NextLink `String` - - Value `IDenyAssignment[]` - -### DenyAssignmentPermission [Api20180701Preview] - - Action `String[]` - - DataAction `String[]` - - NotAction `String[]` - - NotDataAction `String[]` - -### DenyAssignmentProperties [Api20180701Preview] - - DenyAssignmentName `String` - - Description `String` - - DoNotApplyToChildScope `Boolean?` - - ExcludePrincipal `IPrincipal[]` - - IsSystemProtected `Boolean?` - - Permission `IDenyAssignmentPermission[]` - - Principal `IPrincipal[]` - - Scope `String` - -### Dependency [Api20180501] - - DependsOn `IBasicDependency[]` - - Id `String` - - ResourceName `String` - - ResourceType `String` - -### Deployment [Api20180501] - - DebugSettingDetailLevel `String` - - Location `String` - - Mode `DeploymentMode` **{Complete, Incremental}** - - OnErrorDeploymentName `String` - - OnErrorDeploymentType `OnErrorDeploymentType?` **{LastSuccessful, SpecificDeployment}** - - Parameter `IDeploymentPropertiesParameters` - - ParameterLinkContentVersion `String` - - ParameterLinkUri `String` - - Template `IDeploymentPropertiesTemplate` - - TemplateLinkContentVersion `String` - - TemplateLinkUri `String` - -### DeploymentExportResult [Api20180501] - - Template `IDeploymentExportResultTemplate` - -### DeploymentExtended [Api20180501] - - CorrelationId `String` - - DebugSettingDetailLevel `String` - - Dependency `IDependency[]` - - Id `String` - - Location `String` - - Mode `DeploymentMode?` **{Complete, Incremental}** - - Name `String` - - OnErrorDeploymentName `String` - - OnErrorDeploymentProvisioningState `String` - - OnErrorDeploymentType `OnErrorDeploymentType?` **{LastSuccessful, SpecificDeployment}** - - Output `IDeploymentPropertiesExtendedOutputs` - - Parameter `IDeploymentPropertiesExtendedParameters` - - ParameterLinkContentVersion `String` - - ParameterLinkUri `String` - - Provider `IProvider[]` - - ProvisioningState `String` - - Template `IDeploymentPropertiesExtendedTemplate` - - TemplateLinkContentVersion `String` - - TemplateLinkUri `String` - - Timestamp `DateTime?` **{MinValue, MaxValue}** - - Type `String` - -### DeploymentListResult [Api20180501] - - NextLink `String` - - Value `IDeploymentExtended[]` - -### DeploymentOperation [Api20180501] - - Id `String` - - OperationId `String` - - ProvisioningState `String` - - RequestContent `IHttpMessageContent` - - ResponseContent `IHttpMessageContent` - - ServiceRequestId `String` - - StatusCode `String` - - StatusMessage `IDeploymentOperationPropertiesStatusMessage` - - TargetResourceId `String` - - TargetResourceName `String` - - TargetResourceType `String` - - Timestamp `DateTime?` **{MinValue, MaxValue}** - -### DeploymentOperationProperties [Api20180501] - - ProvisioningState `String` - - RequestContent `IHttpMessageContent` - - ResponseContent `IHttpMessageContent` - - ServiceRequestId `String` - - StatusCode `String` - - StatusMessage `IDeploymentOperationPropertiesStatusMessage` - - TargetResourceId `String` - - TargetResourceName `String` - - TargetResourceType `String` - - Timestamp `DateTime?` **{MinValue, MaxValue}** - -### DeploymentOperationsListResult [Api20180501] - - NextLink `String` - - Value `IDeploymentOperation[]` - -### DeploymentProperties [Api20180501] - - DebugSettingDetailLevel `String` - - Mode `DeploymentMode` **{Complete, Incremental}** - - OnErrorDeploymentName `String` - - OnErrorDeploymentType `OnErrorDeploymentType?` **{LastSuccessful, SpecificDeployment}** - - Parameter `IDeploymentPropertiesParameters` - - ParameterLinkContentVersion `String` - - ParameterLinkUri `String` - - Template `IDeploymentPropertiesTemplate` - - TemplateLinkContentVersion `String` - - TemplateLinkUri `String` - -### DeploymentPropertiesExtended [Api20180501] - - CorrelationId `String` - - DebugSettingDetailLevel `String` - - Dependency `IDependency[]` - - Mode `DeploymentMode?` **{Complete, Incremental}** - - OnErrorDeploymentName `String` - - OnErrorDeploymentProvisioningState `String` - - OnErrorDeploymentType `OnErrorDeploymentType?` **{LastSuccessful, SpecificDeployment}** - - Output `IDeploymentPropertiesExtendedOutputs` - - Parameter `IDeploymentPropertiesExtendedParameters` - - ParameterLinkContentVersion `String` - - ParameterLinkUri `String` - - Provider `IProvider[]` - - ProvisioningState `String` - - Template `IDeploymentPropertiesExtendedTemplate` - - TemplateLinkContentVersion `String` - - TemplateLinkUri `String` - - Timestamp `DateTime?` **{MinValue, MaxValue}** - -### DeploymentValidateResult [Api20180501] - - CorrelationId `String` - - DebugSettingDetailLevel `String` - - Dependency `IDependency[]` - - ErrorCode `String` - - ErrorDetail `IResourceManagementErrorWithDetails[]` - - ErrorMessage `String` - - ErrorTarget `String` - - Mode `DeploymentMode?` **{Complete, Incremental}** - - OnErrorDeploymentName `String` - - OnErrorDeploymentProvisioningState `String` - - OnErrorDeploymentType `OnErrorDeploymentType?` **{LastSuccessful, SpecificDeployment}** - - Output `IDeploymentPropertiesExtendedOutputs` - - Parameter `IDeploymentPropertiesExtendedParameters` - - ParameterLinkContentVersion `String` - - ParameterLinkUri `String` - - Provider `IProvider[]` - - ProvisioningState `String` - - Template `IDeploymentPropertiesExtendedTemplate` - - TemplateLinkContentVersion `String` - - TemplateLinkUri `String` - - Timestamp `DateTime?` **{MinValue, MaxValue}** - -### DescendantInfo [Api20180301Preview] - - DisplayName `String` - - Id `String` - - Name `String` - - ParentId `String` - - Type `String` - -### DescendantInfoProperties [Api20180301Preview] - - DisplayName `String` - - ParentId `String` - -### DescendantListResult [Api20180301Preview] - - NextLink `String` - - Value `IDescendantInfo[]` - -### DescendantParentGroupInfo [Api20180301Preview] - - Id `String` - -### DirectoryObject \ [Api16] - - DeletionTimestamp `DateTime?` **{MinValue, MaxValue}** - - ObjectId `String` - - ObjectType `String` - -### DirectoryObjectListResult [Api16] - - OdataNextLink `String` - - Value `IDirectoryObject[]` - -### Domain \ [Api16] - - AuthenticationType `String` - - IsDefault `Boolean?` - - IsVerified `Boolean?` - - Name `String` - -### DomainListResult [Api16] - - Value `IDomain[]` - -### EntityInfo [Api20180301Preview] - - DisplayName `String` - - Id `String` - - InheritedPermission `String` - - Name `String` - - NumberOfChild `Int32?` - - NumberOfChildGroup `Int32?` - - NumberOfDescendant `Int32?` - - ParentDisplayNameChain `String[]` - - ParentId `String` - - ParentNameChain `String[]` - - Permission `String` - - TenantId `String` - - Type `String` - -### EntityInfoProperties [Api20180301Preview] - - DisplayName `String` - - InheritedPermission `String` - - NumberOfChild `Int32?` - - NumberOfChildGroup `Int32?` - - NumberOfDescendant `Int32?` - - ParentDisplayNameChain `String[]` - - ParentId `String` - - ParentNameChain `String[]` - - Permission `String` - - TenantId `String` - -### EntityListResult [Api20180301Preview] - - Count `Int32?` - - NextLink `String` - - Value `IEntityInfo[]` - -### EntityParentGroupInfo [Api20180301Preview] - - Id `String` - -### ErrorDetails [Api20180301Preview] - - Code `String` - - Detail `String` - - Message `String` - -### ErrorMessage [Api16] - - Message `String` - -### ErrorResponse [Api20160901Preview, Api20180301Preview] - - ErrorCode `String` - - ErrorDetail `String` - - ErrorMessage `String` - - HttpStatus `String` - -### ExportTemplateRequest [Api20180501] - - Option `String` - - Resource `String[]` - -### FeatureOperationsListResult [Api20151201] - - NextLink `String` - - Value `IFeatureResult[]` - -### FeatureProperties [Api20151201] - - State `String` - -### FeatureResult [Api20151201] - - Id `String` - - Name `String` - - State `String` - - Type `String` - -### GenericResource [Api20160901Preview, Api20180501] - - Id `String` - - IdentityPrincipalId `String` - - IdentityTenantId `String` - - IdentityType `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** - - IdentityUserAssignedIdentity `IIdentityUserAssignedIdentities ` - - Kind `String` - - Location `String` - - ManagedBy `String` - - Name `String` - - PlanName `String` - - PlanProduct `String` - - PlanPromotionCode `String` - - PlanPublisher `String` - - PlanVersion `String` - - Property `IGenericResourceProperties` - - SkuCapacity `Int32?` - - SkuFamily `String` - - SkuModel `String` - - SkuName `String` - - SkuSize `String` - - SkuTier `String` - - Tag `IResourceTags ` - - Type `String` - -### GetObjectsParameters \ [Api16] - - IncludeDirectoryObjectReference `Boolean?` - - ObjectId `String[]` - - Type `String[]` - -### GraphError [Api16] - - ErrorMessageValueMessage `String` - - OdataErrorCode `String` - -### GroupAddMemberParameters \ [Api16] - - Url `String` - -### GroupCreateParameters \ [Api16] - - DisplayName `String` - - MailEnabled `Boolean` - - MailNickname `String` - - SecurityEnabled `Boolean` - -### GroupGetMemberGroupsParameters \ [Api16] - - SecurityEnabledOnly `Boolean` - -### GroupGetMemberGroupsResult [Api16] - - Value `String[]` - -### GroupListResult [Api16] - - OdataNextLink `String` - - Value `IAdGroup[]` - -### HttpMessage [Api20180501] - - Content `IHttpMessageContent` - -### Identity [Api20160901Preview, Api20180501] - - PrincipalId `String` - - TenantId `String` - - Type `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** - - UserAssignedIdentity `IIdentityUserAssignedIdentities ` - -### Identity1 [Api20180501] - - PrincipalId `String` - - TenantId `String` - - Type `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** - -### InformationalUrl [Api16] - - Marketing `String` - - Privacy `String` - - Support `String` - - TermsOfService `String` - -### KeyCredential \ [Api16] - - CustomKeyIdentifier `String` - - EndDate `DateTime?` **{MinValue, MaxValue}** - - KeyId `String` - - StartDate `DateTime?` **{MinValue, MaxValue}** - - Type `String` - - Usage `String` - - Value `String` - -### KeyCredentialListResult [Api16] - - Value `IKeyCredential[]` - -### KeyCredentialsUpdateParameters [Api16] - - Value `IKeyCredential[]` - -### Location [Api20160601] - - DisplayName `String` - - Id `String` - - Latitude `String` - - Longitude `String` - - Name `String` - - SubscriptionId `String` - -### LocationListResult [Api20160601] - - Value `ILocation[]` - -### ManagementGroup [Api20180301Preview] - - Child `IManagementGroupChildInfo[]` - - DetailUpdatedBy `String` - - DetailUpdatedTime `DateTime?` **{MinValue, MaxValue}** - - DetailVersion `Single?` - - DisplayName `String` - - Id `String` - - Name `String` - - ParentDisplayName `String` - - ParentId `String` - - ParentName `String` - - Role `String[]` - - TenantId `String` - - Type `String` - -### ManagementGroupChildInfo [Api20180301Preview] - - Child `IManagementGroupChildInfo[]` - - DisplayName `String` - - Id `String` - - Name `String` - - Role `String[]` - - Type `String` - -### ManagementGroupDetails [Api20180301Preview] - - ParentDisplayName `String` - - ParentId `String` - - ParentName `String` - - UpdatedBy `String` - - UpdatedTime `DateTime?` **{MinValue, MaxValue}** - - Version `Single?` - -### ManagementGroupInfo [Api20180301Preview] - - DisplayName `String` - - Id `String` - - Name `String` - - TenantId `String` - - Type `String` - -### ManagementGroupInfoProperties [Api20180301Preview] - - DisplayName `String` - - TenantId `String` - -### ManagementGroupListResult [Api20180301Preview] - - NextLink `String` - - Value `IManagementGroupInfo[]` - -### ManagementGroupProperties [Api20180301Preview] - - Child `IManagementGroupChildInfo[]` - - DetailUpdatedBy `String` - - DetailUpdatedTime `DateTime?` **{MinValue, MaxValue}** - - DetailVersion `Single?` - - DisplayName `String` - - ParentDisplayName `String` - - ParentId `String` - - ParentName `String` - - Role `String[]` - - TenantId `String` - -### ManagementLockListResult [Api20160901] - - NextLink `String` - - Value `IManagementLockObject[]` - -### ManagementLockObject [Api20160901] - - Id `String` - - Level `LockLevel` **{CanNotDelete, NotSpecified, ReadOnly}** - - Name `String` - - Note `String` - - Owner `IManagementLockOwner[]` - - Type `String` - -### ManagementLockOwner [Api20160901] - - ApplicationId `String` - -### ManagementLockProperties [Api20160901] - - Level `LockLevel` **{CanNotDelete, NotSpecified, ReadOnly}** - - Note `String` - - Owner `IManagementLockOwner[]` - -### OAuth2Permission [Api16] - - AdminConsentDescription `String` - - AdminConsentDisplayName `String` - - Id `String` - - IsEnabled `Boolean?` - - Type `String` - - UserConsentDescription `String` - - UserConsentDisplayName `String` - - Value `String` - -### OAuth2PermissionGrant [Api16] - - ClientId `String` - - ConsentType `ConsentType?` **{AllPrincipals, Principal}** - - ExpiryTime `String` - - ObjectId `String` - - OdataType `String` - - PrincipalId `String` - - ResourceId `String` - - Scope `String` - - StartTime `String` - -### OAuth2PermissionGrantListResult [Api16] - - OdataNextLink `String` - - Value `IOAuth2PermissionGrant[]` - -### OdataError [Api16] - - Code `String` - - ErrorMessageValueMessage `String` - -### OnErrorDeployment [Api20180501] - - DeploymentName `String` - - Type `OnErrorDeploymentType?` **{LastSuccessful, SpecificDeployment}** - -### OnErrorDeploymentExtended [Api20180501] - - DeploymentName `String` - - ProvisioningState `String` - - Type `OnErrorDeploymentType?` **{LastSuccessful, SpecificDeployment}** - -### Operation [Api20151201, Api20180301Preview] - - DisplayDescription `String` - - DisplayOperation `String` - - DisplayProvider `String` - - DisplayResource `String` - - Name `String` - -### OperationDisplay [Api20151201] - - Operation `String` - - Provider `String` - - Resource `String` - -### OperationDisplayProperties [Api20180301Preview] - - Description `String` - - Operation `String` - - Provider `String` - - Resource `String` - -### OperationListResult [Api20151201, Api20180301Preview] - - NextLink `String` - - Value `IOperation[]` - -### OperationResults [Api20180301Preview] - - Id `String` - - Name `String` - - ProvisioningState `String` - - Type `String` - -### OperationResultsProperties [Api20180301Preview] - - ProvisioningState `String` - -### OptionalClaim [Api16] - - AdditionalProperty `IOptionalClaimAdditionalProperties` - - Essential `Boolean?` - - Name `String` - - Source `String` - -### OptionalClaims [Api16] - - AccessToken `IOptionalClaim[]` - - IdToken `IOptionalClaim[]` - - SamlToken `IOptionalClaim[]` - -### ParametersLink [Api20180501] - - ContentVersion `String` - - Uri `String` - -### ParentGroupInfo [Api20180301Preview] - - DisplayName `String` - - Id `String` - - Name `String` - -### PasswordCredential \ [Api16] - - CustomKeyIdentifier `Byte[]` - - EndDate `DateTime?` **{MinValue, MaxValue}** - - KeyId `String` - - StartDate `DateTime?` **{MinValue, MaxValue}** - - Value `String` - -### PasswordCredentialListResult [Api16] - - Value `IPasswordCredential[]` - -### PasswordCredentialsUpdateParameters [Api16] - - Value `IPasswordCredential[]` - -### PasswordProfile \ [Api16] - - ForceChangePasswordNextLogin `Boolean?` - - Password `String` - -### PatchManagementGroupRequest [Api20180301Preview] - - DisplayName `String` - - ParentId `String` - -### Permission [Api20150701, Api201801Preview] - - Action `String[]` - - DataAction `String[]` - - NotAction `String[]` - - NotDataAction `String[]` - -### PermissionGetResult [Api20150701, Api201801Preview] - - NextLink `String` - - Value `IPermission[]` - -### Plan [Api20160901Preview, Api20180501] - - Name `String` - - Product `String` - - PromotionCode `String` - - Publisher `String` - - Version `String` - -### PlanPatchable [Api20160901Preview] - - Name `String` - - Product `String` - - PromotionCode `String` - - Publisher `String` - - Version `String` - -### PolicyAssignment [Api20151101, Api20161201, Api20180501] - - Description `String` - - DisplayName `String` - - Id `String` - - IdentityPrincipalId `String` - - IdentityTenantId `String` - - IdentityType `ResourceIdentityType?` **{None, SystemAssigned, SystemAssignedUserAssigned, UserAssigned}** - - Location `String` - - Metadata `IPolicyAssignmentPropertiesMetadata` - - Name `String` - - NotScope `String[]` - - Parameter `IPolicyAssignmentPropertiesParameters` - - PolicyDefinitionId `String` - - Scope `String` - - SkuName `String` - - SkuTier `String` - - Type `String` - -### PolicyAssignmentListResult [Api20151101, Api20161201, Api20180501] - - NextLink `String` - - Value `IPolicyAssignment[]` - -### PolicyAssignmentProperties [Api20151101, Api20161201, Api20180501] - - Description `String` - - DisplayName `String` - - Metadata `IPolicyAssignmentPropertiesMetadata` - - NotScope `String[]` - - Parameter `IPolicyAssignmentPropertiesParameters` - - PolicyDefinitionId `String` - - Scope `String` - -### PolicyDefinition [Api20161201, Api20180501] - - Description `String` - - DisplayName `String` - - Id `String` - - Metadata `IPolicyDefinitionPropertiesMetadata` - - Mode `PolicyMode?` **{All, Indexed, NotSpecified}** - - Name `String` - - Parameter `IPolicyDefinitionPropertiesParameters` - - PolicyRule `IPolicyDefinitionPropertiesPolicyRule` - - PolicyType `PolicyType?` **{BuiltIn, Custom, NotSpecified}** - - Property `IPolicyDefinitionProperties` - - Type `String` - -### PolicyDefinitionListResult [Api20161201, Api20180501] - - NextLink `String` - - Value `IPolicyDefinition[]` - -### PolicyDefinitionProperties [Api20161201] - - Description `String` - - DisplayName `String` - - Metadata `IPolicyDefinitionPropertiesMetadata` - - Mode `PolicyMode?` **{All, Indexed, NotSpecified}** - - Parameter `IPolicyDefinitionPropertiesParameters` - - PolicyRule `IPolicyDefinitionPropertiesPolicyRule` - - PolicyType `PolicyType?` **{BuiltIn, Custom, NotSpecified}** - -### PolicyDefinitionReference [Api20180501] - - Parameter `IPolicyDefinitionReferenceParameters` - - PolicyDefinitionId `String` - -### PolicySetDefinition [Api20180501] - - Description `String` - - DisplayName `String` - - Id `String` - - Metadata `IPolicySetDefinitionPropertiesMetadata` - - Name `String` - - Parameter `IPolicySetDefinitionPropertiesParameters` - - PolicyDefinition `IPolicyDefinitionReference[]` - - PolicyType `PolicyType?` **{BuiltIn, Custom, NotSpecified}** - - Type `String` - -### PolicySetDefinitionListResult [Api20180501] - - NextLink `String` - - Value `IPolicySetDefinition[]` - -### PolicySetDefinitionProperties [Api20180501] - - Description `String` - - DisplayName `String` - - Metadata `IPolicySetDefinitionPropertiesMetadata` - - Parameter `IPolicySetDefinitionPropertiesParameters` - - PolicyDefinition `IPolicyDefinitionReference[]` - - PolicyType `PolicyType?` **{BuiltIn, Custom, NotSpecified}** - -### PolicySku [Api20180501] - - Name `String` - - Tier `String` - -### PreAuthorizedApplication [Api16] - - AppId `String` - - Extension `IPreAuthorizedApplicationExtension[]` - - Permission `IPreAuthorizedApplicationPermission[]` - -### PreAuthorizedApplicationExtension [Api16] - - Condition `String[]` - -### PreAuthorizedApplicationPermission [Api16] - - AccessGrant `String[]` - - DirectAccessGrant `Boolean?` - -### Principal [Api20180701Preview] - - Id `String` - - Type `String` - -### Provider [Api20180501] - - Id `String` - - Namespace `String` - - RegistrationState `String` - - ResourceType `IProviderResourceType[]` - -### ProviderListResult [Api20180501] - - NextLink `String` - - Value `IProvider[]` - -### ProviderOperation [Api20150701, Api201801Preview] - - Description `String` - - DisplayName `String` - - IsDataAction `Boolean?` - - Name `String` - - Origin `String` - - Property `IProviderOperationProperties` - -### ProviderOperationsMetadata [Api20150701, Api201801Preview] - - DisplayName `String` - - Id `String` - - Name `String` - - Operation `IProviderOperation[]` - - ResourceType `IResourceType[]` - - Type `String` - -### ProviderOperationsMetadataListResult [Api20150701, Api201801Preview] - - NextLink `String` - - Value `IProviderOperationsMetadata[]` - -### ProviderResourceType [Api20180501] - - Alias `IAliasType[]` - - ApiVersion `String[]` - - Location `String[]` - - Property `IProviderResourceTypeProperties ` - - ResourceType `String` - -### RequiredResourceAccess \ [Api16] - - ResourceAccess `IResourceAccess[]` - - ResourceAppId `String` - -### Resource [Api20160901Preview] - - Id `String` - - Location `String` - - Name `String` - - Tag `IResourceTags ` - - Type `String` - -### ResourceAccess \ [Api16] - - Id `String` - - Type `String` - -### ResourceGroup [Api20180501] - - Id `String` - - Location `String` - - ManagedBy `String` - - Name `String` - - ProvisioningState `String` - - Tag `IResourceGroupTags ` - - Type `String` - -### ResourceGroupExportResult [Api20180501] - - ErrorCode `String` - - ErrorDetail `IResourceManagementErrorWithDetails[]` - - ErrorMessage `String` - - ErrorTarget `String` - - Template `IResourceGroupExportResultTemplate` - -### ResourceGroupListResult [Api20180501] - - NextLink `String` - - Value `IResourceGroup[]` - -### ResourceGroupPatchable [Api20180501] - - ManagedBy `String` - - Name `String` - - ProvisioningState `String` - - Tag `IResourceGroupPatchableTags ` - -### ResourceGroupProperties [Api20180501] - - ProvisioningState `String` - -### ResourceLink [Api20160901] - - Id `String` - - Name `String` - - Note `String` - - SourceId `String` - - TargetId `String` - - Type `IResourceLinkType` - -### ResourceLinkProperties [Api20160901] - - Note `String` - - SourceId `String` - - TargetId `String` - -### ResourceLinkResult [Api20160901] - - NextLink `String` - - Value `IResourceLink[]` - -### ResourceListResult [Api20180501] - - NextLink `String` - - Value `IGenericResource[]` - -### ResourceManagementErrorWithDetails [Api20180501] - - Code `String` - - Detail `IResourceManagementErrorWithDetails[]` - - Message `String` - - Target `String` - -### ResourceProviderOperationDefinition [Api20151101] - - DisplayDescription `String` - - DisplayOperation `String` - - DisplayProvider `String` - - DisplayPublisher `String` - - DisplayResource `String` - - Name `String` - -### ResourceProviderOperationDetailListResult [Api20151101] - - NextLink `String` - - Value `IResourceProviderOperationDefinition[]` - -### ResourceProviderOperationDisplayProperties [Api20151101] - - Description `String` - - Operation `String` - - Provider `String` - - Publisher `String` - - Resource `String` - -### ResourcesIdentity [Models] - - ApplianceDefinitionId `String` - - ApplianceDefinitionName `String` - - ApplianceId `String` - - ApplianceName `String` - - ApplicationDefinitionId `String` - - ApplicationDefinitionName `String` - - ApplicationId `String` - - ApplicationId1 `String` - - ApplicationName `String` - - ApplicationObjectId `String` - - DenyAssignmentId `String` - - DeploymentName `String` - - DomainName `String` - - FeatureName `String` - - GroupId `String` - - GroupObjectId `String` - - Id `String` - - LinkId `String` - - LockName `String` - - ManagementGroupId `String` - - MemberObjectId `String` - - ObjectId `String` - - OperationId `String` - - OwnerObjectId `String` - - ParentResourcePath `String` - - PolicyAssignmentId `String` - - PolicyAssignmentName `String` - - PolicyDefinitionName `String` - - PolicySetDefinitionName `String` - - ResourceGroupName `String` - - ResourceId `String` - - ResourceName `String` - - ResourceProviderNamespace `String` - - ResourceType `String` - - RoleAssignmentId `String` - - RoleAssignmentName `String` - - RoleDefinitionId `String` - - RoleId `String` - - Scope `String` - - SourceResourceGroupName `String` - - SubscriptionId `String` - - TagName `String` - - TagValue `String` - - TenantId `String` - - UpnOrObjectId `String` - -### ResourcesMoveInfo [Api20180501] - - Resource `String[]` - - TargetResourceGroup `String` - -### ResourceType [Api20150701, Api201801Preview] - - DisplayName `String` - - Name `String` - - Operation `IProviderOperation[]` - -### RoleAssignment [Api20150701, Api20171001Preview, Api20180901Preview] - - CanDelegate `Boolean?` - - Id `String` - - Name `String` - - PrincipalId `String` - - PrincipalType `PrincipalType?` **{Application, DirectoryObjectOrGroup, DirectoryRoleTemplate, Everyone, ForeignGroup, Group, Msi, ServicePrincipal, Unknown, User}** - - RoleDefinitionId `String` - - Scope `String` - - Type `String` - -### RoleAssignmentCreateParameters [Api20150701, Api20171001Preview, Api20180901Preview] - - CanDelegate `Boolean?` - - PrincipalId `String` - - PrincipalType `PrincipalType?` **{Application, DirectoryObjectOrGroup, DirectoryRoleTemplate, Everyone, ForeignGroup, Group, Msi, ServicePrincipal, Unknown, User}** - - RoleDefinitionId `String` - -### RoleAssignmentListResult [Api20150701, Api20180901Preview] - - NextLink `String` - - Value `IRoleAssignment[]` - -### RoleAssignmentProperties [Api20150701, Api20171001Preview, Api20180901Preview] - - CanDelegate `Boolean?` - - PrincipalId `String` - - PrincipalType `PrincipalType?` **{Application, DirectoryObjectOrGroup, DirectoryRoleTemplate, Everyone, ForeignGroup, Group, Msi, ServicePrincipal, Unknown, User}** - - RoleDefinitionId `String` - -### RoleAssignmentPropertiesWithScope [Api20150701, Api20171001Preview, Api20180901Preview] - - CanDelegate `Boolean?` - - PrincipalId `String` - - PrincipalType `PrincipalType?` **{Application, DirectoryObjectOrGroup, DirectoryRoleTemplate, Everyone, ForeignGroup, Group, Msi, ServicePrincipal, Unknown, User}** - - RoleDefinitionId `String` - - Scope `String` - -### RoleDefinition [Api20150701, Api201801Preview] - - AssignableScope `String[]` - - Description `String` - - Id `String` - - Name `String` - - Permission `IPermission[]` - - RoleName `String` - - RoleType `String` - - Type `String` - -### RoleDefinitionListResult [Api20150701, Api201801Preview] - - NextLink `String` - - Value `IRoleDefinition[]` - -### RoleDefinitionProperties [Api20150701, Api201801Preview] - - AssignableScope `String[]` - - Description `String` - - Permission `IPermission[]` - - RoleName `String` - - RoleType `String` - -### ServicePrincipal \ [Api16] - - AccountEnabled `Boolean?` - - AlternativeName `String[]` - - AppDisplayName `String` - - AppId `String` - - AppOwnerTenantId `String` - - AppRole `IAppRole[]` - - AppRoleAssignmentRequired `Boolean?` - - DeletionTimestamp `DateTime?` **{MinValue, MaxValue}** - - DisplayName `String` - - ErrorUrl `String` - - Homepage `String` - - KeyCredentials `IKeyCredential[]` - - LogoutUrl `String` - - Name `String[]` - - Oauth2Permission `IOAuth2Permission[]` - - ObjectId `String` - - ObjectType `String` - - PasswordCredentials `IPasswordCredential[]` - - PreferredTokenSigningKeyThumbprint `String` - - PublisherName `String` - - ReplyUrl `String[]` - - SamlMetadataUrl `String` - - Tag `String[]` - - Type `String` - -### ServicePrincipalBase [Api16] - - AccountEnabled `Boolean?` - - AppRoleAssignmentRequired `Boolean?` - - KeyCredentials `IKeyCredential[]` - - PasswordCredentials `IPasswordCredential[]` - - ServicePrincipalType `String` - - Tag `String[]` - -### ServicePrincipalCreateParameters [Api16] - - AccountEnabled `Boolean?` - - AppId `String` - - AppRoleAssignmentRequired `Boolean?` - - KeyCredentials `IKeyCredential[]` - - PasswordCredentials `IPasswordCredential[]` - - ServicePrincipalType `String` - - Tag `String[]` - -### ServicePrincipalListResult [Api16] - - OdataNextLink `String` - - Value `IServicePrincipal[]` - -### ServicePrincipalObjectResult [Api16] - - OdataMetadata `String` - - Value `String` - -### ServicePrincipalUpdateParameters [Api16] - - AccountEnabled `Boolean?` - - AppRoleAssignmentRequired `Boolean?` - - KeyCredentials `IKeyCredential[]` - - PasswordCredentials `IPasswordCredential[]` - - ServicePrincipalType `String` - - Tag `String[]` - -### SignInName \ [Api16] - - Type `String` - - Value `String` - -### Sku [Api20160901Preview, Api20180501] - - Capacity `Int32?` - - Family `String` - - Model `String` - - Name `String` - - Size `String` - - Tier `String` - -### Subscription [Api20160601] - - AuthorizationSource `String` - - DisplayName `String` - - Id `String` - - PolicyLocationPlacementId `String` - - PolicyQuotaId `String` - - PolicySpendingLimit `SpendingLimit?` **{CurrentPeriodOff, Off, On}** - - State `SubscriptionState?` **{Deleted, Disabled, Enabled, PastDue, Warned}** - - SubscriptionId `String` - -### SubscriptionPolicies [Api20160601] - - LocationPlacementId `String` - - QuotaId `String` - - SpendingLimit `SpendingLimit?` **{CurrentPeriodOff, Off, On}** - -### TagCount [Api20180501] - - Type `String` - - Value `Int32?` - -### TagDetails [Api20180501] - - CountType `String` - - CountValue `Int32?` - - Id `String` - - TagName `String` - - Value `ITagValue[]` - -### TagsListResult [Api20180501] - - NextLink `String` - - Value `ITagDetails[]` - -### TagValue [Api20180501] - - CountType `String` - - CountValue `Int32?` - - Id `String` - - TagValue1 `String` - -### TargetResource [Api20180501] - - Id `String` - - ResourceName `String` - - ResourceType `String` - -### TemplateLink [Api20180501] - - ContentVersion `String` - - Uri `String` - -### TenantBackfillStatusResult [Api20180301Preview] - - Status `Status?` **{Cancelled, Completed, Failed, NotStarted, NotStartedButGroupsExist, Started}** - - TenantId `String` - -### TenantIdDescription [Api20160601] - - Id `String` - - TenantId `String` - -### TenantListResult [Api20160601] - - NextLink `String` - - Value `ITenantIdDescription[]` - -### User \ [Api16] - - AccountEnabled `Boolean?` - - DeletionTimestamp `DateTime?` **{MinValue, MaxValue}** - - DisplayName `String` - - GivenName `String` - - ImmutableId `String` - - Mail `String` - - MailNickname `String` - - ObjectId `String` - - ObjectType `String` - - PrincipalName `String` - - SignInName `ISignInName[]` - - Surname `String` - - Type `UserType?` **{Guest, Member}** - - UsageLocation `String` - -### UserBase \ [Api16] - - GivenName `String` - - ImmutableId `String` - - Surname `String` - - UsageLocation `String` - - UserType `UserType?` **{Guest, Member}** - -### UserCreateParameters \ [Api16] - - AccountEnabled `Boolean` - - DisplayName `String` - - GivenName `String` - - ImmutableId `String` - - Mail `String` - - MailNickname `String` - - PasswordProfile `IPasswordProfile ` - - Surname `String` - - UsageLocation `String` - - UserPrincipalName `String` - - UserType `UserType?` **{Guest, Member}** - -### UserGetMemberGroupsParameters \ [Api16] - - SecurityEnabledOnly `Boolean` - -### UserGetMemberGroupsResult [Api16] - - Value `String[]` - -### UserListResult [Api16] - - OdataNextLink `String` - - Value `IUser[]` - -### UserUpdateParameters \ [Api16] - - AccountEnabled `Boolean?` - - DisplayName `String` - - GivenName `String` - - ImmutableId `String` - - MailNickname `String` - - PasswordProfile `IPasswordProfile ` - - Surname `String` - - UsageLocation `String` - - UserPrincipalName `String` - - UserType `UserType?` **{Guest, Member}** - diff --git a/src/Kusto/tools/Resources/resources/readme.md b/src/Kusto/tools/Resources/resources/readme.md deleted file mode 100644 index 937f07f8fec2..000000000000 --- a/src/Kusto/tools/Resources/resources/readme.md +++ /dev/null @@ -1,11 +0,0 @@ -# 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/tools/Resources/test/readme.md b/src/Kusto/tools/Resources/test/readme.md deleted file mode 100644 index 7c752b4c8c43..000000000000 --- a/src/Kusto/tools/Resources/test/readme.md +++ /dev/null @@ -1,17 +0,0 @@ -# Test -This directory contains the [Pester](https://www.powershellgallery.com/packages/Pester) tests to run for the module. We use Pester as it is the unofficial standard for PowerShell unit testing. Test stubs for custom cmdlets (created in `..\custom`) will be generated into this folder when `build-module.ps1` is ran. These test stubs will fail automatically, to indicate that tests should be written for custom cmdlets. - -## Info -- Modifiable: yes -- Generated: partial -- Committed: yes -- Packaged: no - -## Details -We allow three testing modes: *live*, *record*, and *playback*. These can be selected using the `-Live`, `-Record`, and `-Playback` switches respectively on the `test-module.ps1` script. This script will run through any `.Tests.ps1` scripts in the `test` folder. If you choose the *record* mode, it will create a `.Recording.json` file of the REST calls between the client and server. Then, when you choose *playback* mode, it will use the `.Recording.json` file to mock the communication between server and client. The *live* mode runs the same as the *record* mode; however, it doesn't create the `.Recording.json` file. - -## Purpose -Custom cmdlets generally encompass additional functionality not described in the REST specification, or combines functionality generated from the REST spec. To validate this functionality continues to operate as intended, creating tests that can be ran and re-ran against custom cmdlets is part of the framework. - -## Usage -To execute tests, run the `test-module.ps1`. To write tests, [this example](https://github.com/pester/Pester/blob/8b9cf4248315e44f1ac6673be149f7e0d7f10466/Examples/Planets/Get-Planet.Tests.ps1#L1) from the Pester repository is very useful for getting started. \ No newline at end of file From 6e533e6921c6cc157fed93ac7ab8c45785c6bd8f Mon Sep 17 00:00:00 2001 From: astauben Date: Mon, 10 Aug 2020 10:58:07 +0300 Subject: [PATCH 13/13] Delete Add-AzKustoDatabasePrincipal.Tests.ps1 --- .../Add-AzKustoDatabasePrincipal.Tests.ps1 | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/Kusto/test/Add-AzKustoDatabasePrincipal.Tests.ps1 diff --git a/src/Kusto/test/Add-AzKustoDatabasePrincipal.Tests.ps1 b/src/Kusto/test/Add-AzKustoDatabasePrincipal.Tests.ps1 deleted file mode 100644 index fcb963749e3b..000000000000 --- a/src/Kusto/test/Add-AzKustoDatabasePrincipal.Tests.ps1 +++ /dev/null @@ -1,22 +0,0 @@ -$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' -if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' -} -. ($loadEnvPath) -$TestRecordingFile = Join-Path $PSScriptRoot 'Add-AzKustoDatabasePrincipal.Recording.json' -$currentPath = $PSScriptRoot -while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent -} -. ($mockingPath | Select-Object -First 1).FullName - -Describe 'Add-AzKustoDatabasePrincipal' { - It 'AddExpanded' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } - - It 'AddViaIdentityExpanded' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } -}